uoa-repository-manager-service/app/features/administration/forms/verification-rule-search-form/verification-rule-search-fo...

26 lines
794 B
TypeScript

import { ComponentFixture, TestBed } from '@angular/core/testing';
import { VerificationRuleSearchFormComponent } from './verification-rule-search-form.component';
describe('VerificationRuleSearchFormComponent', () => {
let component: VerificationRuleSearchFormComponent;
let fixture: ComponentFixture<VerificationRuleSearchFormComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ VerificationRuleSearchFormComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(VerificationRuleSearchFormComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});