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


TypeScript IMock.verify方法代码示例

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


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

示例1: it

                it("should stop and restart the projection", async () => {
                    await subject.handle(request, response.object);

                    projectionRunner.verify(p => p.stop(), Times.once());
                    snapshotRepository.verify(s => s.deleteSnapshot("Mock"), Times.once());
                    projectionEngine.verify(p => p.run(It.isValue(projection)), Times.once());
                });
开发者ID:tierratelematics,项目名称:prettygoat,代码行数:7,代码来源:ProjectionsHandlerSpec.ts

示例2: it

                it("should subscribe to the channel without parameters", () => {
                    let context = new PushContext("Admin", "KeyUndefined", {id: 25});
                    let key = subject.add(client.object, context);

                    client.verify(c => c.join("/admin/keyundefined"), Times.once());
                    expect(key).not.to.be.ok();
                });
开发者ID:tierratelematics,项目名称:prettygoat,代码行数:7,代码来源:ClientRegistrySpec.ts

示例3: it

        it("should return the list of projections", () => {
            subject.handle(request, response.object);

            response.verify(r => r.send(It.isValue([
                "Test", "Test2"
            ])), Times.once());
        });
开发者ID:tierratelematics,项目名称:prettygoat,代码行数:7,代码来源:ProjectionsListSpec.ts

示例4: it

 it("should not set a starting date for events", () => {
     streamFactory.verify(s => s.from(It.isValue({
         name: "Mock",
         manifests: ["TestEvent"],
         from: null
     }), It.isAny(), It.isAny()), Times.once());
 });
开发者ID:tierratelematics,项目名称:prettygoat,代码行数:7,代码来源:ProjectionRunnerSpec.ts

示例5: it

 it("should populate the notification key", () => {
     subject.notifyAll(new PushContext("Admin", "Foo"), NullEvent, "7564");
     eventEmitter.verify(e => e.broadcastTo("/admin/foo/7564", It.isValue({
         url: "http://test:80/projections/admin/foo",
         notificationKey: "7564",
         timestamp: null,
         eventId: null
     })), Times.once());
 });
开发者ID:tierratelematics,项目名称:prettygoat,代码行数:9,代码来源:PushNotifierSpec.ts

示例6: it

        it("should pass the data to the viewmodel", () => {
            let obs = Observable.empty();
            subject.extend(viewmodel.object, null, {
                model: obs,
                refresh: () => null
            });

            viewmodel.verify(v => v.observe(It.isValue(obs)), Times.once());
        });
开发者ID:tierratelematics,项目名称:ninjagoat,代码行数:9,代码来源:ObservableExtenderSpec.ts


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