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