/* tslint:disable:no-unused-variable */ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { By } from '@angular/platform-browser'; import { DebugElement } from '@angular/core'; import { TableColumnOfGroupComponent } from './table-column-of-group.component'; describe('TableColumnOfGroupComponent', () => { let component: TableColumnOfGroupComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ TableColumnOfGroupComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(TableColumnOfGroupComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });