Füge Baugruppen hinzu

This commit is contained in:
Marcel Diegelmann 2025-10-17 12:25:10 +02:00
parent 98b8c5b788
commit 5bd0741fba
128 changed files with 23830 additions and 109 deletions

View file

@ -22,6 +22,7 @@ declare(strict_types=1);
*/
namespace App\Tests\Twig;
use App\Entity\AssemblySystem\Assembly;
use App\Entity\Attachments\PartAttachment;
use App\Entity\Parts\PartCustomState;
use App\Entity\ProjectSystem\Project;
@ -61,6 +62,7 @@ class EntityExtensionTest extends WebTestCase
$this->assertSame('manufacturer', $this->service->getEntityType(new Manufacturer()));
$this->assertSame('category', $this->service->getEntityType(new Category()));
$this->assertSame('device', $this->service->getEntityType(new Project()));
$this->assertSame('assembly', $this->service->getEntityType(new Assembly()));
$this->assertSame('attachment', $this->service->getEntityType(new PartAttachment()));
$this->assertSame('supplier', $this->service->getEntityType(new Supplier()));
$this->assertSame('user', $this->service->getEntityType(new User()));