import { TestBed } from '@angular/core/testing'; import { MathService } from './math.service'; describe('MathService', () => { let service: MathService; beforeEach(() => { TestBed.configureTestingModule({}); service = TestBed.inject(MathService); }); it('should be created', () => { expect(service).toBeTruthy(); }); });