blob: 185c20e384f4a664af78f104264ca898f27bdfe2 [file] [log] [blame]
Sean Condon95fb5742019-04-02 12:16:55 +01001/*
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 */
16import { async, ComponentFixture, TestBed } from '@angular/core/testing';
17
18import { LoadingComponent } from './loading.component';
19import {LogService} from '../../log.service';
20import {ConsoleLoggerService} from '../../consolelogger.service';
21import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
22
23describe('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});