[cbecd8]: / nih-ct-protocol-ui / src / app / predict.service.spec.ts

Download this file

16 lines (12 with data), 380 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
import { TestBed, inject } from '@angular/core/testing';
import { PredictService } from './predict.service';
describe('PredictService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [PredictService]
});
});
it('should be created', inject([PredictService], (service: PredictService) => {
expect(service).toBeTruthy();
}));
});