diff options
Diffstat (limited to 'tests/tools_test.php')
-rw-r--r-- | tests/tools_test.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/tools_test.php b/tests/tools_test.php index 7c80c84..ae0fe09 100644 --- a/tests/tools_test.php +++ b/tests/tools_test.php @@ -40,15 +40,16 @@ class ezcGraphToolsTest extends ezcGraphTestCase return new PHPUnit_Framework_TestSuite( "ezcGraphToolsTest" ); } - protected function setUp() + public function setUp() { + parent::setUp(); + static $i = 0; $this->tempDir = $this->createTempDir( __CLASS__ . sprintf( '_%03d_', ++$i ) ) . '/'; $this->basePath = dirname( __FILE__ ) . '/data/'; - $this->setLocale( LC_NUMERIC, 'en_US', 'en_US.UTF-8', 'en_US.UTF8', 'en', 'english', 'en_US@euro' ); } - protected function tearDown() + public function tearDown() { if ( !$this->hasFailed() ) { |