add generic table

This commit is contained in:
Roland Schneider
2025-11-19 20:29:21 +01:00
parent 8ccb75ee4e
commit 1bfa4dec47
14 changed files with 338 additions and 2 deletions

View File

@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { GenericTableSearchForm } from './generic-table-search-form';
describe('GenericTableSearchForm', () => {
let component: GenericTableSearchForm;
let fixture: ComponentFixture<GenericTableSearchForm>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [GenericTableSearchForm]
})
.compileComponents();
fixture = TestBed.createComponent(GenericTableSearchForm);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});