Optimised structs

This commit is contained in:
2024-09-16 20:12:48 +02:00
parent 23324a2b53
commit 74a141277e
47 changed files with 665 additions and 631 deletions

View File

@@ -1,23 +1,23 @@
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();
});
});
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();
});
});