本文整理汇总了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());
});
示例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();
});
示例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());
});
示例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());
});
示例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());
});
示例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());
});