diff options
author | Kore Nordmann <mail@kore-nordmann.de> | 2013-12-21 11:32:05 +0100 |
---|---|---|
committer | Kore Nordmann <mail@kore-nordmann.de> | 2013-12-21 11:32:05 +0100 |
commit | 93062e252a16efeaea9c95484232a009a1569a51 (patch) | |
tree | 68e9ced5ec51b66cdb515f93759b80618361ebb2 /tests/line_test.php | |
parent | 323edff5f22cb8d116d0eb58083f9733e1f53126 (diff) | |
download | zetacomponents-graph-93062e252a16efeaea9c95484232a009a1569a51.zip zetacomponents-graph-93062e252a16efeaea9c95484232a009a1569a51.tar.gz |
Ensure correct locale in all tests
Diffstat (limited to 'tests/line_test.php')
-rw-r--r-- | tests/line_test.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/line_test.php b/tests/line_test.php index 1623610..62aee3c 100644 --- a/tests/line_test.php +++ b/tests/line_test.php @@ -44,8 +44,10 @@ class ezcGraphLineChartTest extends ezcGraphTestCase return new PHPUnit_Framework_TestSuite( "ezcGraphLineChartTest" ); } - protected function setUp() + public function setUp() { + parent::setUp(); + static $i = 0; if ( version_compare( phpversion(), '5.1.3', '<' ) ) { @@ -55,7 +57,7 @@ class ezcGraphLineChartTest extends ezcGraphTestCase $this->basePath = dirname( __FILE__ ) . '/data/'; } - protected function tearDown() + public function tearDown() { if ( !$this->hasFailed() ) { |