You are here

protected function ImageValidatorTest::setUp in Plug 7

Overrides AbstractConstraintValidatorTest::setUp

File

lib/Symfony/validator/Symfony/Component/Validator/Tests/Constraints/ImageValidatorTest.php, line 43

Class

ImageValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

protected function setUp() {
  parent::setUp();
  $this->image = __DIR__ . '/Fixtures/test.gif';
  $this->imageLandscape = __DIR__ . '/Fixtures/test_landscape.gif';
  $this->imagePortrait = __DIR__ . '/Fixtures/test_portrait.gif';
  $this->image4By3 = __DIR__ . '/Fixtures/test_4by3.gif';
}