From ac9c2133d90757ef6513664d348fa3b5bd368179 Mon Sep 17 00:00:00 2001 From: zYne Date: Tue, 4 Sep 2007 20:41:23 +0000 Subject: [PATCH] --- tests/I18nTestCase.php | 47 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 tests/I18nTestCase.php diff --git a/tests/I18nTestCase.php b/tests/I18nTestCase.php new file mode 100644 index 000000000..94b905d30 --- /dev/null +++ b/tests/I18nTestCase.php @@ -0,0 +1,47 @@ +. + */ + +/** + * Doctrine_I18n_TestCase + * + * @package Doctrine + * @author Konsta Vesterinen + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @category Object Relational Mapping + * @link www.phpdoctrine.com + * @since 1.0 + * @version $Revision$ + */ +class Doctrine_I18n_TestCase extends Doctrine_UnitTestCase +{ + + public function prepareData() + { } + + public function prepareTables() + { + $this->profiler = new Doctrine_Connection_Profiler(); + $this->conn->addListener($this->profiler); + $this->tables = array('I18nTest', 'I18nTestTranslation'); + + parent::prepareTables(); + } +}