summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/views/services/services-list/create-model/create-model.component.spec.ts
diff options
context:
space:
mode:
authorcyuamber <xuranyjy@chinamobile.com>2019-10-09 08:13:41 +0000
committerxu ran <xuranyjy@chinamobile.com>2019-10-09 08:49:34 +0000
commita82b518867281a85f7c80a3604f40a91409ea964 (patch)
treefad9b3cb3f04806580bc1889d85012110e235021 /usecaseui-portal/src/app/views/services/services-list/create-model/create-model.component.spec.ts
parentbb79ef05913b5b66807d4bfcd096e0144133b13b (diff)
Add create model component
Change-Id: Ia99496892c82024af895d0abc37c4cda548872a5 Issue-ID: USECASEUI-307 Signed-off-by: cyuamber <xuranyjy@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app/views/services/services-list/create-model/create-model.component.spec.ts')
-rw-r--r--usecaseui-portal/src/app/views/services/services-list/create-model/create-model.component.spec.ts26
1 files changed, 26 insertions, 0 deletions
diff --git a/usecaseui-portal/src/app/views/services/services-list/create-model/create-model.component.spec.ts b/usecaseui-portal/src/app/views/services/services-list/create-model/create-model.component.spec.ts
new file mode 100644
index 00000000..fd57b3a7
--- /dev/null
+++ b/usecaseui-portal/src/app/views/services/services-list/create-model/create-model.component.spec.ts
@@ -0,0 +1,26 @@
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { CreateModelComponent } from './create-model.component';
+
+describe('CreateModelComponent', () => {
+ let component: CreateModelComponent;
+ let fixture: ComponentFixture<CreateModelComponent>;
+
+ beforeEach(async(() => {
+ TestBed.configureTestingModule({
+ declarations: [ CreateModelComponent ]
+ })
+ .compileComponents();
+ }));
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(CreateModelComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
+