35 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /*
 | |
|  * @Description  : 
 | |
|  * @Version      : 1.0
 | |
|  * @Author       : Shiming
 | |
|  * @Date         : 2022-03-30 14:45:52
 | |
|  * @LastEditors  : Shiming
 | |
|  * @LastEditTime : 2022-03-30 15:33:06
 | |
|  * @FilePath     : \\tms-obc-web\\src\\app\\routes\\tax-management\\components\\individual-income\\individual-income.component.spec.ts
 | |
|  * Copyright (C) 2022 huzhenhong. All rights reserved.
 | |
|  */
 | |
| import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing';
 | |
| import { TaxManagementIndividualIncomeComponent } from './individual-income.component';
 | |
| 
 | |
| describe('TaxManagementIndividualIncomeComponent', () => {
 | |
|   let component: TaxManagementIndividualIncomeComponent;
 | |
|   let fixture: ComponentFixture<TaxManagementIndividualIncomeComponent>;
 | |
| 
 | |
|   beforeEach(waitForAsync(() => {
 | |
|     TestBed.configureTestingModule({
 | |
|       declarations: [ TaxManagementIndividualIncomeComponent ]
 | |
|     })
 | |
|     .compileComponents();
 | |
|   }));
 | |
| 
 | |
|   beforeEach(() => {
 | |
|     fixture = TestBed.createComponent(TaxManagementIndividualIncomeComponent);
 | |
|     component = fixture.componentInstance;
 | |
|     fixture.detectChanges();
 | |
|   });
 | |
| 
 | |
|   it('should create', () => {
 | |
|     expect(component).toBeTruthy();
 | |
|   });
 | |
| });
 |