當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript TestBed.createComponent方法代碼示例

本文整理匯總了TypeScript中@angular/core/testing.TestBed.createComponent方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript TestBed.createComponent方法的具體用法?TypeScript TestBed.createComponent怎麽用?TypeScript TestBed.createComponent使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在@angular/core/testing.TestBed的用法示例。


在下文中一共展示了TestBed.createComponent方法的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: beforeEach

 beforeEach(() => {
   fixture = TestBed.createComponent(OsdScrubModalComponent);
   component = fixture.componentInstance;
   fixture.detectChanges();
 });
開發者ID:LenzGr,項目名稱:ceph,代碼行數:5,代碼來源:osd-scrub-modal.component.spec.ts

示例2: fakeAsync

 fakeAsync(inject([Router, Location], (router: Router, location: Location) => {
   TestBed.createComponent(MyApp);
   router.navigate(['/']);
   tick();
   expect(location.path()).toBe('/');
 })
開發者ID:edicon,項目名稱:angular2typescript,代碼行數:6,代碼來源:app.spec.ts

示例3: beforeEach

 beforeEach(() => {
     fixture = TestBed.createComponent(UserMgmtComponent);
     comp = fixture.componentInstance;
     service = fixture.debugElement.injector.get(UserService);
 });
開發者ID:Doha2012,項目名稱:tutorials,代碼行數:5,代碼來源:user-management.component.spec.ts

示例4: beforeEach

 beforeEach(() => {
   fixture = TestBed.createComponent(AppComponent);
   comp = fixture.componentInstance;
   de = fixture.debugElement.query(By.css('h1'));
 });
開發者ID:RandyWilkinson,項目名稱:Ng2Sample,代碼行數:5,代碼來源:app.component.spec.ts

示例5: beforeEach

 beforeEach(() => {
   fixture = TestBed.createComponent(UserPanelComponent);
   component = fixture.componentInstance;
   fixture.detectChanges();
 });
開發者ID:Shreyansh028,項目名稱:anytimelibrary,代碼行數:5,代碼來源:user-panel.component.spec.ts

示例6: beforeEach

 beforeEach(() => {
   fixture = TestBed.createComponent(CampoControlErroComponent);
   component = fixture.componentInstance;
   fixture.detectChanges();
 });
開發者ID:Marcos3yk,項目名稱:CursoAngular2,代碼行數:5,代碼來源:campo-control-erro.component.spec.ts

示例7: beforeEach

 beforeEach(() => {
   fixture = TestBed.createComponent(EnrichmentRegistrationComponent);
   component = fixture.componentInstance;
   fixture.detectChanges();
 });
開發者ID:nguyenquan263,項目名稱:SMS_System_Final,代碼行數:5,代碼來源:enrichment-registration.component.spec.ts

示例8: beforeEach

 beforeEach(() => {
   fixture = TestBed.createComponent(ClubDetailMainComponent);
   component = fixture.componentInstance;
   fixture.detectChanges();
 });
開發者ID:Meistercoach83,項目名稱:sfw,代碼行數:5,代碼來源:club-detail-main.component.spec.ts

示例9: beforeEach

 beforeEach(() => {
   fixture = TestBed.createComponent(LeoMessiPage);
   component = fixture.componentInstance;
   fixture.detectChanges();
 });
開發者ID:DiegoBinario,項目名稱:EPE2_APP,代碼行數:5,代碼來源:leo-messi.page.spec.ts

示例10: beforeEach

 beforeEach(() => {
   fixture = TestBed.createComponent(PageNotFountComponent);
   component = fixture.componentInstance;
   fixture.detectChanges();
 });
開發者ID:kiwi677,項目名稱:usersystem,代碼行數:5,代碼來源:page-not-fount.component.spec.ts


注:本文中的@angular/core/testing.TestBed.createComponent方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。