fengxiang
2018-07-12 655edbc7405188c4bb32e63bf52a9a31ac00d75c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { TestBed, TestModuleMetadata } from '@angular/core/testing';
import { setUpTestBed } from '../../../../testing/common.spec';
 
import { ValidationComponent } from './validation.component';
 
describe('Component: Validation', () => {
    setUpTestBed(<TestModuleMetadata>{
        declarations: [ ValidationComponent ]
    });
 
    it('should create an instance', () => {
        const fixture = TestBed.createComponent(ValidationComponent);
        const comp = fixture.debugElement.componentInstance;
        expect(comp).toBeTruthy();
    });
});