2025-04-29 23:21:19 -04:00
|
|
|
<?php
|
2025-05-08 11:13:17 -04:00
|
|
|
namespace Tests\Unit\Model\Proyecto;
|
2025-04-29 23:21:19 -04:00
|
|
|
|
|
|
|
use Incoviba\Model\Proyecto\Broker;
|
2025-05-08 11:13:17 -04:00
|
|
|
use Tests\Extension\AbstractModel;
|
|
|
|
use Tests\Extension\testMethodsTrait;
|
|
|
|
use Tests\Extension\testPropertiesTrait;
|
2025-04-29 23:21:19 -04:00
|
|
|
|
2025-04-29 23:57:49 -04:00
|
|
|
class BrokerTest extends AbstractModel
|
2025-04-29 23:21:19 -04:00
|
|
|
{
|
2025-04-29 23:57:49 -04:00
|
|
|
use testPropertiesTrait, testMethodsTrait;
|
2025-04-29 23:21:19 -04:00
|
|
|
|
2025-04-29 23:57:49 -04:00
|
|
|
protected function setUp(): void
|
2025-04-29 23:21:19 -04:00
|
|
|
{
|
2025-04-29 23:57:49 -04:00
|
|
|
$this->model = new Broker();
|
|
|
|
$this->properties = ['rut', 'digit', 'name'];
|
|
|
|
$this->methods = ['data', 'contracts'];
|
2025-04-29 23:21:19 -04:00
|
|
|
}
|
2025-05-08 11:13:17 -04:00
|
|
|
}
|