本文整理汇总了TypeScript中ts-mockito.instance函数的典型用法代码示例。如果您正苦于以下问题:TypeScript instance函数的具体用法?TypeScript instance怎么用?TypeScript instance使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了instance函数的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: beforeEach
beforeEach(() => {
const mockedAssetService = mock(AssetService);
when(mockedAssetService.resolveFromRequire(anyNumber())).thenReturn({
height: 100,
scale: 1,
uri: 'lol',
width: 100
});
const assetService = instance(mockedAssetService);
const mockedColorService = mock(ColorService);
when(mockedColorService.toNativeColor(anyString())).thenReturn(666);
const colorService = instance(mockedColorService);
uut = new OptionsProcessor(store, new UniqueIdProvider(), colorService, assetService);
});
示例2: describe
describe('AcLabelDescComponent', () => {
let component: AcLabelDescComponent;
let fixture: ComponentFixture<AcLabelDescComponent>;
const cesiumService = mock(CesiumService);
const labelCollection = mock(Cesium.LabelCollection);
when(cesiumService.getScene()).thenReturn({primitives: instance(labelCollection)});
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [AcLabelDescComponent],
providers: [LabelDrawerService,
providerFromMock(CesiumService, cesiumService),
mockProvider(LayerService),
mockProvider(CesiumProperties),
mockProvider(ComputationCache)]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(AcLabelDescComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
示例3: it
it("should call onSuccess after segment loading succeeded", () => {
const loader = mock<LoaderInterface>(LoaderInterfaceEmptyImpl);
const onSuccess = sinon.spy();
let segmentLoadedListener: Function = () => { throw new Error("SegmentLoaded listener not set"); };
when(loader.on(Events.SegmentLoaded, anyFunction())).thenCall((eventName_unused, listener) => {
segmentLoadedListener = listener;
});
const segment = new Segment(
"id",
testPlaylist.baseUrl + "segment-1045.ts",
testPlaylist.url,
testPlaylist.url,
undefined,
"1045",
undefined, 0, new ArrayBuffer(0));
const manager = new SegmentManager(instance(loader));
manager.processPlaylist(testPlaylist.url, testPlaylist.content, testPlaylist.url);
manager.loadSegment(segment.url, undefined, onSuccess, () => {});
segmentLoadedListener(segment);
onSuccess.calledWith(segment.data);
});
示例4: describe
describe('AcAcrComponent', () => {
let component: AcArcComponent;
let fixture: ComponentFixture<AcArcComponent>;
const cesiumService = mock(CesiumService);
const arcCollection = mock(Cesium.PrimitiveCollection);
when(cesiumService.getScene()).thenReturn({primitives: instance(arcCollection)});
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [AcArcComponent],
providers: [ArcDrawerService,
providerFromMock(CesiumService, cesiumService)]
})
.compileComponents();
fixture = TestBed.createComponent(AcArcComponent);
component = fixture.componentInstance;
}));
it('should create', () => {
expect(component).toBeTruthy();
});
});
示例5: test
test('all checks OK gives OK', () => {
const group = new HealthCheckGroup('test1');
const mockHealthCheck = mock<HealthCheck>(HealthCheck);
when(mockHealthCheck.getCheckName()).thenReturn('check1');
when(mockHealthCheck.getLastResult()).thenReturn(new HealthCheckResult(HealthCheckStatus.OK, 'OK'));
const mockHealthCheck2 = mock<HealthCheck>(HealthCheck);
when(mockHealthCheck2.getCheckName()).thenReturn('check2');
when(mockHealthCheck2.getLastResult()).thenReturn(new HealthCheckResult(HealthCheckStatus.OK, 'OK'));
group.addCheck(instance(mockHealthCheck));
group.addCheck(instance(mockHealthCheck2));
group.start();
const result = group.getLastResult();
result.status.must.equal(HealthCheckStatus.OK);
group.stop();
});
示例6: test
test('Readonly flag is passed (true)', async () => {
const check = new MySQLHealthCheck('testCheck', true);
const mockedMysqlClient = mock(MySQLClient);
when(mockedMysqlClient.ping(anything())).thenReturn(Promise.resolve(undefined));
check.mysqlClient = instance(mockedMysqlClient);
await check.doCheck();
verify(mockedMysqlClient.ping(true)).once();
});