车辆对接

This commit is contained in:
wangshiming
2022-01-06 16:51:48 +08:00
parent bfcbe348b6
commit d003166b31
12 changed files with 601 additions and 166 deletions

View File

@ -0,0 +1,24 @@
import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing';
import { SupplyManagementBulkAssignedCarComponent } from './assigned-car-bulk.component';
describe('SupplyManagementBulkAssignedCarComponent', () => {
let component: SupplyManagementBulkAssignedCarComponent;
let fixture: ComponentFixture<SupplyManagementBulkAssignedCarComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [SupplyManagementBulkAssignedCarComponent]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(SupplyManagementBulkAssignedCarComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});