summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/components/performance-details/performance-details.component.spec.ts
diff options
context:
space:
mode:
authorzhangab <zhanganbing@chinamobile.com>2018-10-31 16:36:06 +0800
committerzhangab <zhanganbing@chinamobile.com>2018-10-31 16:36:36 +0800
commita5a05aa4c736c58d606234aa47a266cce054cd2d (patch)
tree8ffb5bbc12af6995585fcb8d33608e9f1e0148c5 /usecaseui-portal/src/app/components/performance-details/performance-details.component.spec.ts
parent13de0d893a4ff6d45a49861f7536822e6be1c801 (diff)
Fix VNF Performance Query Bugs
Change-Id: I65637d6f058905d0918e5dc1740594572fa4c931 Issue-ID: USECASEUI-166 Signed-off-by: zhangab <zhanganbing@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app/components/performance-details/performance-details.component.spec.ts')
-rw-r--r--usecaseui-portal/src/app/components/performance-details/performance-details.component.spec.ts25
1 files changed, 25 insertions, 0 deletions
diff --git a/usecaseui-portal/src/app/components/performance-details/performance-details.component.spec.ts b/usecaseui-portal/src/app/components/performance-details/performance-details.component.spec.ts
new file mode 100644
index 00000000..11f4abd2
--- /dev/null
+++ b/usecaseui-portal/src/app/components/performance-details/performance-details.component.spec.ts
@@ -0,0 +1,25 @@
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { PerformanceDetailsComponent } from './performance-details.component';
+
+describe('PerformanceDetailsComponent', () => {
+ let component: PerformanceDetailsComponent;
+ let fixture: ComponentFixture<PerformanceDetailsComponent>;
+
+ beforeEach(async(() => {
+ TestBed.configureTestingModule({
+ declarations: [ PerformanceDetailsComponent ]
+ })
+ .compileComponents();
+ }));
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(PerformanceDetailsComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});