import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { MatTransferComponent } from './mat-transfer.component'; describe('MatTransferComponent', () => { let component: MatTransferComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ MatTransferComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(MatTransferComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });