springboot-angular-app-demo/src/main/ng-app/src/app/my-first-c-angular/my-first-c-angular.componen...

29 lines
828 B
TypeScript

/* tslint:disable:no-unused-variable */
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { By } from '@angular/platform-browser';
import { DebugElement } from '@angular/core';
import { MyFirstCAngularComponent } from './my-first-c-angular.component';
describe('MyFirstCAngularComponent', () => {
let component: MyFirstCAngularComponent;
let fixture: ComponentFixture<MyFirstCAngularComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ MyFirstCAngularComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(MyFirstCAngularComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});