Project

General

Profile

1
import { TestBed } from '@angular/core/testing';
2
import { ApplicationLevelExceptionService } from './application-level-exception.service';
3

    
4

    
5
describe('ApplicationLevelExceptionService', () => {
6
  let service: ApplicationLevelExceptionService;
7

    
8
  beforeEach(() => {
9
    TestBed.configureTestingModule({});
10
    service = TestBed.inject(ApplicationLevelExceptionService);
11
  });
12

    
13
  it('should be created', () => {
14
    expect(service).toBeTruthy();
15
  });
16
});
(2-2/20)