blob: 8d020165984cf8b02ded8e0260b089f49633c83f [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 { CopyDataDialogComponent } from './copy-data-dialog.component';
import { SharedModule } from '@shared/shared.module';
import { RouterTestingModule } from '@angular/router/testing';
describe('CopyDataDialogComponent', () => {
let component: CopyDataDialogComponent;
let fixture: ComponentFixture<CopyDataDialogComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [CopyDataDialogComponent],
imports: [
SharedModule,
RouterTestingModule
]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(CopyDataDialogComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});