Assemblies einführen

This commit is contained in:
Marcel Diegelmann 2025-03-19 08:13:45 +01:00
parent e1418dfdc1
commit f0748a2123
107 changed files with 14096 additions and 98 deletions

View file

@ -0,0 +1,52 @@
<?php
declare(strict_types=1);
/*
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
*
* Copyright (C) 2019 - 2023 Jan Böhmer (https://github.com/jbtronics)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
namespace App\Tests\Services\AssemblySystem;
use App\Entity\AssemblySystem\Assembly;
use App\Services\AssemblySystem\AssemblyBuildPartHelper;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
class AssemblyBuildPartHelperTest extends WebTestCase
{
/** @var AssemblyBuildPartHelper */
protected $service;
protected function setUp(): void
{
self::bootKernel();
$this->service = self::getContainer()->get(AssemblyBuildPartHelper::class);
}
public function testGetPartInitialization(): void
{
$assembly = new Assembly();
$assembly->setName('Assembly 1');
$assembly->setDescription('Description 1');
$part = $this->service->getPartInitialization($assembly);
$this->assertSame('Assembly 1', $part->getName());
$this->assertSame('Description 1', $part->getDescription());
$this->assertSame($assembly, $part->getBuiltAssembly());
$this->assertSame($part, $assembly->getBuildPart());
}
}