Cambio en namespace

This commit is contained in:
Juan Pablo Vial
2025-05-08 11:13:17 -04:00
parent c1ebac6c0c
commit ca5354a3ee
20 changed files with 62 additions and 62 deletions

View File

@ -1,10 +1,10 @@
<?php
namespace ProVM\Unit\Model\Venta;
namespace Tests\Unit\Model\Venta;
use Incoviba\Model\Venta\Reservation;
use ProVM\Tests\Extension\AbstractModel;
use ProVM\Tests\Extension\testMethodsTrait;
use ProVM\Tests\Extension\testPropertiesTrait;
use Tests\Extension\AbstractModel;
use Tests\Extension\testMethodsTrait;
use Tests\Extension\testPropertiesTrait;
class ReservationTest extends AbstractModel
{
@ -16,4 +16,4 @@ class ReservationTest extends AbstractModel
$this->properties = ['buyer', 'date', 'units', 'promotions', 'broker'];
$this->methods = ['states', 'currentState', 'addUnit', 'removeUnit', 'findUnit', 'hasUnit'];
}
}
}