diff --git a/tests/TableTestCase.php b/tests/TableTestCase.php index 45d1c30d9..8df451371 100644 --- a/tests/TableTestCase.php +++ b/tests/TableTestCase.php @@ -39,7 +39,14 @@ class Doctrine_Table_TestCase extends Doctrine_UnitTestCase parent::prepareTables(); } - public function testFieldConversion() + public function testInitializingNewTableWorksWithoutConnection() + { + $table = new Doctrine_Table('Test', $this->conn); + + $this->assertEqual($table->getComponentName(), 'Test'); + } + + public function testFieldConversion() { $this->dbh->setAttribute(PDO::ATTR_CASE, PDO::CASE_UPPER);