2023-01-25 09:49:41 +01:00
|
|
|
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
|
|
|
|
|
2025-06-04 11:26:53 +02:00
|
|
|
import { NotificationPolicyComponent } from './notification-policy.component';
|
2023-01-25 09:49:41 +01:00
|
|
|
|
|
|
|
|
describe('PasswordComplexityPolicyComponent', () => {
|
2025-06-04 11:26:53 +02:00
|
|
|
let component: NotificationPolicyComponent;
|
|
|
|
|
let fixture: ComponentFixture<NotificationPolicyComponent>;
|
2023-01-25 09:49:41 +01:00
|
|
|
|
|
|
|
|
beforeEach(waitForAsync(() => {
|
|
|
|
|
TestBed.configureTestingModule({
|
2025-06-04 11:26:53 +02:00
|
|
|
declarations: [NotificationPolicyComponent],
|
2023-01-25 09:49:41 +01:00
|
|
|
}).compileComponents();
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2025-06-04 11:26:53 +02:00
|
|
|
fixture = TestBed.createComponent(NotificationPolicyComponent);
|
2023-01-25 09:49:41 +01:00
|
|
|
component = fixture.componentInstance;
|
|
|
|
|
fixture.detectChanges();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
|
});
|
|
|
|
|
});
|