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\Promotion;
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 PromotionTest extends AbstractModel
{
@ -16,4 +16,4 @@ class PromotionTest extends AbstractModel
$this->properties = ['description', 'amount', 'startDate', 'endDate', 'validUntil', 'type', 'state'];
$this->methods = ['projects', 'brokers', 'unitTypes', 'unitLines', 'units', 'value'];
}
}
}