]> source.dussan.org Git - archiva.git/blob
d6ce62fceb4408eabba6c8dbc519b02054115beb
[archiva.git] /
1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one
3  * or more contributor license agreements.  See the NOTICE file
4  * distributed with this work for additional information
5  * regarding copyright ownership.  The ASF licenses this file
6  * to you under the Apache License, Version 2.0 (the
7  * "License"); you may not use this file except in compliance
8  * with the License.  You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing,
13  * software distributed under the License is distributed on an
14  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15  * KIND, either express or implied.  See the License for the
16  * specific language governing permissions and limitations
17  * under the License.
18  */
19
20 import { ComponentFixture, TestBed } from '@angular/core/testing';
21
22 import { SecurityConfigurationComponent } from './security-configuration.component';
23
24 describe('SecurityConfigurationComponent', () => {
25   let component: SecurityConfigurationComponent;
26   let fixture: ComponentFixture<SecurityConfigurationComponent>;
27
28   beforeEach(async () => {
29     await TestBed.configureTestingModule({
30       declarations: [ SecurityConfigurationComponent ]
31     })
32     .compileComponents();
33   });
34
35   beforeEach(() => {
36     fixture = TestBed.createComponent(SecurityConfigurationComponent);
37     component = fixture.componentInstance;
38     fixture.detectChanges();
39   });
40
41   it('should create', () => {
42     expect(component).toBeTruthy();
43   });
44 });