summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/definition/dashboard-report-grid/dashboard-report-grid.component.spec.ts
blob: 6d0c2946a3c2c2e31a23d83fef2cd3dd37ce7e29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { FormsModule } from '@angular/forms';
import { DashboardReportGridComponent } from './dashboard-report-grid.component';
import { CUSTOM_ELEMENTS_SCHEMA, NO_ERRORS_SCHEMA } from '@angular/core';
import { HttpClientTestingModule } from '@angular/common/http/testing';

describe('DashboardReportGridComponent', () => {
  let component: DashboardReportGridComponent;
  let fixture: ComponentFixture<DashboardReportGridComponent>;

  beforeEach(async(() => {
    TestBed.configureTestingModule({
      schemas: [CUSTOM_ELEMENTS_SCHEMA, NO_ERRORS_SCHEMA], 
      declarations: [ DashboardReportGridComponent ],
      imports: [FormsModule, HttpClientTestingModule]
    })
    .compileComponents();
  })); 

  beforeEach(() => {
    fixture = TestBed.createComponent(DashboardReportGridComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });

  it('should test ngOnInit method', () => {
      component.ngOnInit();
  });

  it('should test changedOption method', () => {    
    component.changedOptions();
  });

  it('should test assignCopy method', () => {
      component.assignCopy();
  });

  it('should test filterItem method', () => {
      component.filterItem(1);
  });

  it('should test addItem method', () => {
      component.addItem();
  });

});