add Brand class and associated unit tests
This commit is contained in:
7
client/src/app/models/brand/brand.spec.ts
Normal file
7
client/src/app/models/brand/brand.spec.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { Brand } from './brand';
|
||||
|
||||
describe('Brand', () => {
|
||||
it('should create an instance', () => {
|
||||
expect(new Brand()).toBeTruthy();
|
||||
});
|
||||
});
|
||||
3
client/src/app/models/brand/brand.ts
Normal file
3
client/src/app/models/brand/brand.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export class Brand {
|
||||
name: string = '';
|
||||
}
|
||||
Reference in New Issue
Block a user