Sean Condon | 95fb574 | 2019-04-02 12:16:55 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2019-present Open Networking Foundation |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | import { async, ComponentFixture, TestBed } from '@angular/core/testing'; |
| 17 | |
| 18 | import { LoadingComponent } from './loading.component'; |
| 19 | import {LogService} from '../../log.service'; |
| 20 | import {ConsoleLoggerService} from '../../consolelogger.service'; |
| 21 | import {BrowserAnimationsModule} from '@angular/platform-browser/animations'; |
| 22 | |
| 23 | describe('LoadingComponent', () => { |
| 24 | let log: LogService; |
| 25 | let component: LoadingComponent; |
| 26 | let fixture: ComponentFixture<LoadingComponent>; |
| 27 | |
| 28 | beforeEach(async(() => { |
| 29 | log = new ConsoleLoggerService(); |
| 30 | TestBed.configureTestingModule({ |
| 31 | imports: [ BrowserAnimationsModule ], |
| 32 | declarations: [ LoadingComponent ], |
| 33 | providers: [ |
| 34 | { provide: LogService, useValue: log } |
| 35 | ] |
| 36 | }) |
| 37 | .compileComponents(); |
| 38 | })); |
| 39 | |
| 40 | beforeEach(() => { |
| 41 | fixture = TestBed.createComponent(LoadingComponent); |
| 42 | component = fixture.componentInstance; |
| 43 | fixture.detectChanges(); |
| 44 | }); |
| 45 | |
| 46 | it('should create', () => { |
| 47 | expect(component).toBeTruthy(); |
| 48 | }); |
| 49 | }); |