. */ /** * 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(); } }