Renamed Storelocation entity to StorageLocation

This commit is contained in:
Jan Böhmer 2023-09-04 22:57:40 +02:00
parent 09acca950d
commit 0af5a58dbe
59 changed files with 218 additions and 176 deletions

View file

@ -6,7 +6,7 @@ namespace App\Tests\Services\Parts;
use App\Entity\Parts\Part;
use App\Entity\Parts\PartLot;
use App\Entity\Parts\Storelocation;
use App\Entity\Parts\StorageLocation;
use App\Services\Parts\PartLotWithdrawAddHelper;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
@ -29,10 +29,10 @@ class PartLotWithdrawAddHelperTest extends WebTestCase
/** @var Part */
private Part $part;
/** @var Storelocation */
private Storelocation $storageLocation;
/** @var Storelocation */
private Storelocation $full_storageLocation;
/** @var StorageLocation */
private StorageLocation $storageLocation;
/** @var StorageLocation */
private StorageLocation $full_storageLocation;
/** @var PartLot */
private PartLot $partLot1;
@ -59,8 +59,8 @@ class PartLotWithdrawAddHelperTest extends WebTestCase
{
$this->part = new Part();
$this->storageLocation = new Storelocation();
$this->full_storageLocation = new Storelocation();
$this->storageLocation = new StorageLocation();
$this->full_storageLocation = new StorageLocation();
$this->full_storageLocation->setIsFull(true);
$this->partLot1 = new TestPartLot();