我想通过 ts-mockito@2.5.0 创建一个类的模拟对象,但我无法正确设置它。
这是人为的测试用例:
import {expect} from "chai";
import {
mock,
when,
} from "ts-mockito";
class MockMe {
public doStuff(): string {
return "I AM THE ORIGINAL VALUE";
}
}
describe("ts-mockito weirdness", async () => {
it("should create a mock with specific return values", async () => {
const mocked = mock(MockMe);
await when(mocked.doStuff()).thenReturn("I AM MOCKED");
const actualReturnValue = mocked.doStuff();
expect(actualReturnValue).to.eq("I AM MOCKED");
});
});
正如测试用例所暗示的那样,我希望我的模拟返回“我被嘲笑”的返回值。
但我得到的是一个 ts-mockito-specifc 对象,其中包含以下属性:methodStubCollection
、matchers
、 mocker
和name
.
我应该如何设置它按预期工作的模拟?
旁注:这个测试用例只是为了展示我正在经历的奇怪行为。这不是我的实际测试。我想在单元测试中为不同的服务使用模拟。)