13 lines
364 B
TypeScript
13 lines
364 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { UctiProtocolService } from './ucti-protocol.service';
|
|
|
|
describe('UctiProtocolService', () => {
|
|
beforeEach(() => TestBed.configureTestingModule({}));
|
|
|
|
it('should be created', () => {
|
|
const service: UctiProtocolService = TestBed.get(UctiProtocolService);
|
|
expect(service).toBeTruthy();
|
|
});
|
|
});
|