import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { StackColumnSubChartNewComponent } from './stack-column-sub-chart-new.component'; describe('StackColumnSubChartNewComponent', () => { let component: StackColumnSubChartNewComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ StackColumnSubChartNewComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(StackColumnSubChartNewComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });