setUp() protected method

See also: PHPUnit_Framework_TestCase::setUp()
protected setUp ( )
Beispiel #1
0
 /**
  * {@inheritdoc}
  * @see PHPUnit_Framework_TestCase::setUp()
  */
 protected function setUp()
 {
     parent::setUp();
     if (!$this->isSkipFunctionalTests()) {
         $this->aws = $this->getEnvironment()->aws(self::REGION);
         $this->assertInstanceOf(self::CLASS_AWS, $this->aws);
     }
 }
Beispiel #2
0
 /**
  * {@inheritdoc}
  * @see Scalr\Tests\Service.AwsTestCase::setUp()
  */
 protected function setUp()
 {
     parent::setUp();
     if (!$this->isSkipFunctionalTests()) {
         $this->aws = $this->getEnvironment()->aws(AwsTestCase::REGION);
         $this->aws->cloudFront->enableEntityManager();
     }
 }
Beispiel #3
0
 /**
  * {@inheritdoc}
  * @see Scalr\Tests\Service.AwsTestCase::setUp()
  */
 protected function setUp()
 {
     parent::setUp();
     if (!static::isSkippedFunctionalTest()) {
         $this->s3 = $this->getEnvironment()->aws(AwsTestCase::REGION)->s3;
         $this->s3->enableEntityManager();
     }
 }
Beispiel #4
0
 /**
  * {@inheritdoc}
  * @see Scalr\Tests\Service.AwsTestCase::setUp()
  */
 protected function setUp()
 {
     parent::setUp();
     if (!$this->isSkipFunctionalTests()) {
         $this->s3 = $this->getContainer()->aws->s3;
         $this->s3->enableEntityManager();
     }
 }
 /**
  * {@inheritdoc}
  * @see Scalr\Tests\Service.AwsTestCase::setUp()
  */
 protected function setUp()
 {
     parent::setUp();
 }