blob: f2d156c9fb0a186fe62bb3b70be44662971472b4 [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';
describe('CopyDataDialogComponent', () => {
let component: CopyDataDialogComponent;
let fixture: ComponentFixture<CopyDataDialogComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ CopyDataDialogComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(CopyDataDialogComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});