当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript assert.alwaysCalledOn方法代码示例

本文整理汇总了TypeScript中Sinon.assert.alwaysCalledOn方法的典型用法代码示例。如果您正苦于以下问题:TypeScript assert.alwaysCalledOn方法的具体用法?TypeScript assert.alwaysCalledOn怎么用?TypeScript assert.alwaysCalledOn使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Sinon.assert的用法示例。


在下文中一共展示了assert.alwaysCalledOn方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: it

    it('predicates are called with the same context and proper arguments', function () {
        const exampleContext = {some: 'context'},
            structure = {
                key0: sinon.stub().returns(true),
                key1: sinon.stub().returns(true)
            },
            exampleObject = {
                key0: 1,
                key1: 'string'
            };

        const extraArgs = [2, 3];
        const args = [exampleObject, ...extraArgs];
        isValidStructure.call(exampleContext, structure, ...args);
        isValidStructure(structure).call(exampleContext, ...args);

        sinon.assert.calledTwice(structure.key0);
        sinon.assert.calledTwice(structure.key1);

        sinon.assert.alwaysCalledOn(structure.key0, exampleContext);
        sinon.assert.alwaysCalledOn(structure.key1, exampleContext);

        sinon.assert.calledWith(structure.key0, 1, ...extraArgs);
        sinon.assert.calledWith(structure.key1, 'string', ...extraArgs);
    });
开发者ID:wookieb,项目名称:predicates,代码行数:25,代码来源:structureTest.ts

示例2: it

    it('calls the predicate in the same context and forward value arguments', function () {
        const exampleContext = {example: 'context'};
        const stub = sinon.stub().returns(true);

        const args = [1, '2', null];
        undefinedOr(stub).call(exampleContext, ...args);
        undefinedOr.call(exampleContext, stub, ...args);

        sinon.assert.calledTwice(stub);
        sinon.assert.alwaysCalledOn(stub, exampleContext);
        sinon.assert.alwaysCalledWith(stub, ...args);
    });
开发者ID:wookieb,项目名称:predicates,代码行数:12,代码来源:undefinedOrTest.ts

示例3: it

    it('calls a predicate with the same context and proper arguments', function () {
        const exampleContext = {some: 'property'};
        const stub = sinon.stub().returns(true);

        const arr = [1, 2];
        const extraArgs = ['super', 'extra', 'args'];
        isArrayOf(stub).call(exampleContext, arr, ...extraArgs);
        isArrayOf.call(exampleContext, stub, arr, ...extraArgs);

        sinon.assert.callCount(stub, 4);
        sinon.assert.alwaysCalledOn(stub, exampleContext);
        sinon.assert.calledWith(stub, 1, ...extraArgs);
        sinon.assert.calledWith(stub, 2, ...extraArgs);
    });
开发者ID:wookieb,项目名称:predicates,代码行数:14,代码来源:arrayOfTest.ts

示例4: it

        it("should execute callback with given context as this", () => {
            const executeSpy = sinon.spy(),
                commandContext = commonHelpers.createNote();

            const command = new commands.Command({
                canExecute: () => true,
                execute: executeSpy,
                context: commandContext
            });

            command.execute();

            sinon.assert.calledOnce(executeSpy);
            sinon.assert.alwaysCalledOn(executeSpy, commandContext);
        });
开发者ID:spatools,项目名称:komvvm,代码行数:15,代码来源:commands.ts


注:本文中的Sinon.assert.alwaysCalledOn方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。