Cambio en namespace
This commit is contained in:
@ -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']]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
namespace ProVM\Tests\Extension;
|
||||
namespace Tests\Extension;
|
||||
|
||||
trait testMethodsTrait
|
||||
{
|
||||
@ -15,4 +15,4 @@ trait testMethodsTrait
|
||||
}
|
||||
|
||||
protected array $methods = [];
|
||||
}
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user