Blame view
sources/3rdparty/rackspace/php-opencloud/tests/OpenCloud/Tests/Identity/IdentityTestCase.php
305 Bytes
|
6d9380f96
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<?php
namespace OpenCloud\Tests\Identity;
use OpenCloud\Tests\OpenCloudTestCase;
use OpenCloud\Identity\Service as IdentityService;
class IdentityTestCase extends OpenCloudTestCase
{
public function setupObjects()
{
$this->service = IdentityService::factory($this->getClient());
}
}
|