本文整理汇总了TypeScript中angular2/compiler/testing.TestComponentBuilder类的典型用法代码示例。如果您正苦于以下问题:TypeScript TestComponentBuilder类的具体用法?TypeScript TestComponentBuilder怎么用?TypeScript TestComponentBuilder使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了TestComponentBuilder类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: inject
inject([TestComponentBuilder], (tcb: TestComponentBuilder) => {
tcb.createAsync(TestCmp)
.then((fixture: ComponentFixture<TestCmp>) => {
fixture.detectChanges();
expect(getListItems(fixture).length).toBe(10);
});
}));
示例2: inject
inject([TestComponentBuilder], fakeAsync((tcb: TestComponentBuilder) => {
tcb.createAsync(TestCustomTemplateCmp)
.then((fixture: ComponentFixture<TestCmp>) => {
fixture.detectChanges();
tick();
fixture.detectChanges();
let defaultTemplate = fixture.debugElement.query(By.css('.ng2-pagination'));
expect(defaultTemplate).toBeNull();
});
})));
示例3: getControlsInstance
function getControlsInstance(tcb: TestComponentBuilder): Promise<PaginationControlsCmp> {
return tcb.createAsync(TestCmp)
.then((_fixture: ComponentFixture<TestCmp>) => {
fixture = _fixture;
testCmpInstance = _fixture.componentInstance;
testCmpInstance.config.currentPage = 2;
let controlsInstance: PaginationControlsCmp = _fixture
.debugElement.query(By.css('pagination-controls')).componentInstance;
_fixture.detectChanges();
return controlsInstance;
});
}