From 39e46088c5efdc34f43ce7be66f9be9a496c3aaa Mon Sep 17 00:00:00 2001 From: zYne Date: Tue, 29 May 2007 19:03:19 +0000 Subject: [PATCH] --- tests/TokenizerTestCase.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/TokenizerTestCase.php b/tests/TokenizerTestCase.php index 1bc925f0e..ebf20c019 100644 --- a/tests/TokenizerTestCase.php +++ b/tests/TokenizerTestCase.php @@ -33,6 +33,10 @@ */ class Doctrine_Tokenizer_TestCase extends Doctrine_UnitTestCase { + public function prepareData() + { } + public function prepareTables() + { } public function testSqlExplode() { $str = "word1 word2 word3"; @@ -93,6 +97,6 @@ class Doctrine_Tokenizer_TestCase extends Doctrine_UnitTestCase $str = "something (( ))"; $a = Doctrine_Tokenizer::sqlExplode($str); - $this->assertEqual($a, array("something", "(( ))")); + $this->assertEqual($a, array("something", "(( ))")); } }