import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { UnusedHtmlComponent } from './unused-html.component';

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

  beforeEach(async(() => {
    TestBed.configureTestingModule({
      declarations: [ UnusedHtmlComponent ]
    })
    .compileComponents();
  }));

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

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