Initial commit
This commit is contained in:
7
tests/unit/stubs/NumericEntityStub.ts
Normal file
7
tests/unit/stubs/NumericEntityStub.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { BaseEntity } from '@/infrastructure/Entity/BaseEntity';
|
||||
|
||||
export class NumericEntityStub extends BaseEntity<number> {
|
||||
constructor(id: number) {
|
||||
super(id);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user