add BrandService and ProductService with basic HTTP methods and tests

This commit is contained in:
Vincent Guillet
2025-10-14 14:53:07 +02:00
parent f2f855bc70
commit f04f9fd93f
4 changed files with 61 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { ProductService } from './product.service';
describe('ProductService', () => {
let service: ProductService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(ProductService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});