You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
722B

  1. import { ComponentFixture, TestBed } from '@angular/core/testing';
  2. import { CentralizedSecurityManagementComponent } from './centralized-security-management.component';
  3. describe('CentralizedSecurityManagementComponent', () => {
  4. let component: CentralizedSecurityManagementComponent;
  5. let fixture: ComponentFixture<CentralizedSecurityManagementComponent>;
  6. beforeEach(() => {
  7. TestBed.configureTestingModule({
  8. declarations: [CentralizedSecurityManagementComponent]
  9. });
  10. fixture = TestBed.createComponent(CentralizedSecurityManagementComponent);
  11. component = fixture.componentInstance;
  12. fixture.detectChanges();
  13. });
  14. it('should create', () => {
  15. expect(component).toBeTruthy();
  16. });
  17. });