2025-04-30 01:12:23 -04:00
|
|
|
<?php
|
2025-05-08 11:13:17 -04:00
|
|
|
namespace Tests\Unit\Model\Venta;
|
2025-04-30 01:12:23 -04:00
|
|
|
|
|
|
|
use Incoviba\Model\Venta\Promotion;
|
2025-05-08 11:13:17 -04:00
|
|
|
use Tests\Extension\AbstractModel;
|
|
|
|
use Tests\Extension\testMethodsTrait;
|
|
|
|
use Tests\Extension\testPropertiesTrait;
|
2025-04-30 01:12:23 -04:00
|
|
|
|
|
|
|
class PromotionTest extends AbstractModel
|
|
|
|
{
|
|
|
|
use testPropertiesTrait, testMethodsTrait;
|
|
|
|
|
|
|
|
protected function setUp(): void
|
|
|
|
{
|
|
|
|
$this->model = new Promotion();
|
|
|
|
$this->properties = ['description', 'amount', 'startDate', 'endDate', 'validUntil', 'type', 'state'];
|
|
|
|
$this->methods = ['projects', 'brokers', 'unitTypes', 'unitLines', 'units', 'value'];
|
|
|
|
}
|
2025-05-08 11:13:17 -04:00
|
|
|
}
|