2018-11-27 22:44:37 +01:00
|
|
|
import { TestBed } from '@angular/core/testing';
|
|
|
|
|
|
|
|
import { E2EImportsModule } from 'e2e-imports.module';
|
|
|
|
|
2019-07-26 11:46:59 +02:00
|
|
|
import { ChoiceService } from './choice.service';
|
|
|
|
|
2018-11-27 22:44:37 +01:00
|
|
|
describe('ChoiceService', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
TestBed.configureTestingModule({
|
|
|
|
imports: [E2EImportsModule],
|
|
|
|
providers: [ChoiceService]
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should be created', () => {
|
|
|
|
const service: ChoiceService = TestBed.get(ChoiceService);
|
|
|
|
expect(service).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|