summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/columns/column.service.spec.ts
blob: 22e1cc3dcdf765ab7e0ac7abe3782f2cde1be36e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { TestBed } from '@angular/core/testing';

import { ColumnService } from './column.service';
import { HttpClient } from '@angular/common/http';
import { HttpTestingController, HttpClientTestingModule } from '@angular/common/http/testing';

describe('ColumnService', () => {
  let httpClient: HttpClient;
  let httpTestingController: HttpTestingController;
  beforeEach(() => 
  TestBed.configureTestingModule({
       imports: [HttpClientTestingModule]
  }));

  // httpClient=TestBed.get(HttpClient);
  // httpTestingController=TestBed.get(httpTestingController);

  it('should be created', () => {
    const service: ColumnService = TestBed.get(ColumnService);
    expect(service).toBeTruthy();
  });
});