import { Entity, EntityProperty } from '../../../types';

describe('Entity', () => {
    it('create', () => {
        const entity = new Entity({
            name: 'Entity4',
        });
        const property = new EntityProperty();
    });
});
