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

import { <%= classify(pluralName) %>DialogPageComponent } from './<%= dasherize(pluralName) %>-dialog-page.component';

describe('<%= classify(pluralName) %>DialogComponent', () => {
  let component: <%= classify(pluralName) %>DialogPageComponent;
  let fixture: ComponentFixture<<%= classify(pluralName) %>DialogPageComponent>;

  beforeEach(async(() => {
    TestBed.configureTestingModule({
      declarations: [ <%= classify(pluralName) %>DialogPageComponent ]
    })
    .compileComponents();
  }));

  beforeEach(() => {
    fixture = TestBed.createComponent(<%= classify(pluralName) %>DialogPageComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

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