r83dev/test-entity

Entity properties trait to test properties of an entity.

v1.0.0 2025-04-03 07:20 UTC

This package is auto-updated.

Last update: 2025-04-03 08:13:46 UTC


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