diff options
Diffstat (limited to 'tests/axis_space_test.php')
-rw-r--r-- | tests/axis_space_test.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/axis_space_test.php b/tests/axis_space_test.php index 1d514c3..b7db7cf 100644 --- a/tests/axis_space_test.php +++ b/tests/axis_space_test.php @@ -46,13 +46,15 @@ class ezcGraphAxisSpaceTest extends ezcGraphTestCase return new PHPUnit_Framework_TestSuite( __CLASS__ ); } - protected function setUp() + public function setUp() { + parent::setUp(); + $this->tempDir = $this->createTempDir( __CLASS__ . sprintf( '_%03d_', ++self::$i ) ) . '/'; $this->basePath = dirname( __FILE__ ) . '/data/'; } - protected function tearDown() + public function tearDown() { if ( !$this->hasFailed() ) { |