Blame view
sources/3rdparty/rackspace/php-opencloud/tests/OpenCloud/Tests/Autoscale/AutoscaleTestCase.php
1.01 KB
|
6d9380f96
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
<?php
/**
* PHP OpenCloud library.
*
* @copyright 2014 Rackspace Hosting, Inc. See LICENSE for information.
* @license https://www.apache.org/licenses/LICENSE-2.0
* @author Jamie Hannaford <jamie.hannaford@rackspace.com>
*/
namespace OpenCloud\Tests\Autoscale;
use OpenCloud\Tests\OpenCloudTestCase;
class AutoscaleTestCase extends OpenCloudTestCase
{
const GROUP_ID = '6742e741-cab6-42ff-abe5-458150afc9b1';
const POLICY_ID = 'policyId';
const WEBHOOK_ID = '23037efb-53a9-4ae5-bc33-e89a56b501b6';
const CONFIG_CLASS = 'OpenCloud\Autoscale\Resource\GroupConfiguration';
const GROUP_CLASS = 'OpenCloud\Autoscale\Resource\Group';
protected $service;
protected $group;
protected $policy;
protected $mockPath = 'Autoscale';
public function setupObjects()
{
$this->service = $this->getClient()->autoscaleService('autoscale');
$this->addMockSubscriber($this->getTestFilePath('Group'));
$this->group = $this->service->group(self::GROUP_ID);
}
}
|