8 changed files with 51 additions and 3 deletions
@ -0,0 +1 @@ |
|||||||
|
<p>11111123</p> |
@ -0,0 +1,25 @@ |
|||||||
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; |
||||||
|
|
||||||
|
import { ExaminationDetailsComponent } from './examination-details.component'; |
||||||
|
|
||||||
|
describe('ExaminationDetailsComponent', () => { |
||||||
|
let component: ExaminationDetailsComponent; |
||||||
|
let fixture: ComponentFixture<ExaminationDetailsComponent>; |
||||||
|
|
||||||
|
beforeEach(async(() => { |
||||||
|
TestBed.configureTestingModule({ |
||||||
|
declarations: [ ExaminationDetailsComponent ] |
||||||
|
}) |
||||||
|
.compileComponents(); |
||||||
|
})); |
||||||
|
|
||||||
|
beforeEach(() => { |
||||||
|
fixture = TestBed.createComponent(ExaminationDetailsComponent); |
||||||
|
component = fixture.componentInstance; |
||||||
|
fixture.detectChanges(); |
||||||
|
}); |
||||||
|
|
||||||
|
it('should create', () => { |
||||||
|
expect(component).toBeTruthy(); |
||||||
|
}); |
||||||
|
}); |
@ -0,0 +1,15 @@ |
|||||||
|
import { Component, OnInit } from '@angular/core'; |
||||||
|
|
||||||
|
@Component({ |
||||||
|
selector: 'app-examination-details', |
||||||
|
templateUrl: './examination-details.component.html', |
||||||
|
styleUrls: ['./examination-details.component.scss'] |
||||||
|
}) |
||||||
|
export class ExaminationDetailsComponent implements OnInit { |
||||||
|
|
||||||
|
constructor() { } |
||||||
|
|
||||||
|
ngOnInit(): void { |
||||||
|
} |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue