24 lines
651 B
TypeScript
24 lines
651 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { Json2CsharpComponent } from './json2-csharp.component';
|
|
|
|
describe('Json2csharpComponent', () => {
|
|
let component: Json2CsharpComponent;
|
|
let fixture: ComponentFixture<Json2CsharpComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [Json2CsharpComponent]
|
|
})
|
|
.compileComponents();
|
|
|
|
fixture = TestBed.createComponent(Json2CsharpComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|