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,5 +1,5 @@
<?php
namespace ProVM\Tests\Extension;
namespace Tests\Extension;
use GuzzleHttp\Client;
use PHPUnit\Framework\TestCase;
@ -12,4 +12,4 @@ abstract class AbstractIntegration extends TestCase
{
$this->client = new Client(['base_uri' => $_ENV['APP_URL']]);
}
}
}

View File

@ -1,5 +1,5 @@
<?php
namespace ProVM\Tests\Extension;
namespace Tests\Extension;
use PHPUnit\Framework\TestCase;
use Incoviba\Common\Define\Model;
@ -7,4 +7,4 @@ use Incoviba\Common\Define\Model;
abstract class AbstractModel extends TestCase
{
protected Model $model;
}
}

View File

@ -1,5 +1,5 @@
<?php
namespace ProVM\Tests\Extension;
namespace Tests\Extension;
use PHPUnit\Framework\TestCase;
@ -14,4 +14,4 @@ abstract class AbstractPerformance extends TestCase
{
return microtime(true) - $this->startTime;
}
}
}

View File

@ -1,5 +1,5 @@
<?php
namespace ProVM\Tests\Extension;
namespace Tests\Extension;
trait ObjectHasMethodTrait
{
@ -7,4 +7,4 @@ trait ObjectHasMethodTrait
{
$this->assertTrue(method_exists($object, $method), sprintf('The object %s does not have the method %s', get_class($object), $method));
}
}
}

View File

@ -1,5 +1,5 @@
<?php
namespace ProVM\Tests\Extension;
namespace Tests\Extension;
trait testMethodsTrait
{
@ -15,4 +15,4 @@ trait testMethodsTrait
}
protected array $methods = [];
}
}

View File

@ -1,5 +1,5 @@
<?php
namespace ProVM\Tests\Extension;
namespace Tests\Extension;
use Incoviba\Common\Define\Model;
@ -21,4 +21,4 @@ trait testPropertiesTrait
$this->assertObjectHasProperty($key, $model);
}
}
}
}