example.service.spec.ts
describe('ExampleService', () => {
const _httpClient = new HttpClient(null);
const _otherService = new OtherService(null, null);
let service: ExampleService;
beforeEach(() => {
service = new TimingBenchmarkService(_httpClient, _otherService);