r83dev / test-entity
Entity properties trait to test properties of an entity.
v1.0.0
2025-04-03 07:20 UTC
Requires
- php: ^8.0
- phpunit/phpunit: >10
- r83dev/test-accessible: ^1
README
A helper class for testing, especially for unit tests to easily test properties of entities or data transfer objects.
Installation
Install via composer:
dcrr composer req --dev r83dev/test-entity
Usage
Use the EntityPropertiesTrait
in your test and create getEntityClass
and getEntityProperties
methods:
class MyEntityTest { use R83Dev\TestEntity\EntityPropertiesTrait; protected static function getEntityClass(): string { return MyEntity::class; } protected static function getEntityProperties(): array { return [ 'id' => 5 'name' => 'My Entity', 'categories' => new ArrayCollection(['category1']), 'sort' => 14, ]; } }
The Trait will now test the getters, setters and issers of the properties