blob: 1fa00f6d1a6575004b85c607a66ea0226aa428bb [file] [log] [blame]
/********************************************************************************
* Copyright © 2018 Mettenmeier GmbH.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { CopyDialogComponent } from './copy-dialog.component';
import { SharedModule } from '@shared/shared.module';
import { RouterTestingModule } from '@angular/router/testing';
import { MessageService } from 'primeng/components/common/messageservice';
describe('CopyDialogComponent', () => {
let component: CopyDialogComponent;
let fixture: ComponentFixture<CopyDialogComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [CopyDialogComponent],
imports: [
SharedModule,
RouterTestingModule
],
providers: [
MessageService
]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(CopyDialogComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});