summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/views/services/slicing-management/slicing-task-management/check-process-model/check-process-model.component.spec.ts
blob: 4235605a3b28168089a3eb2cae320de14648ab7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { CheckProcessModelComponent } from './check-process-model.component';

describe('CheckProcessModelComponent', () => {
	let component: CheckProcessModelComponent;
	let fixture: ComponentFixture<CheckProcessModelComponent>;

	beforeEach(async(() => {
		TestBed.configureTestingModule({
			declarations: [CheckProcessModelComponent]
		})
			.compileComponents();
	}));

	beforeEach(() => {
		fixture = TestBed.createComponent(CheckProcessModelComponent);
		component = fixture.componentInstance;
		fixture.detectChanges();
	});

	it('should create', () => {
		expect(component).toBeTruthy();
	});
});