Changeset 4338 for trunk/tests_old/DataType
- Timestamp:
- 05/06/08 14:41:22 (8 months ago)
- Location:
- trunk/tests_old/DataType
- Files:
-
- 2 modified
-
BooleanTestCase.php (modified) (1 diff)
-
EnumTestCase.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests_old/DataType/BooleanTestCase.php
r3882 r4338 61 61 $this->connection->clear(); 62 62 63 $test = $test->get Mapper()->find($test->id);63 $test = $test->getRepository()->find($test->id); 64 64 $this->assertIdentical($test->is_working, true); 65 65 } -
trunk/tests_old/DataType/EnumTestCase.php
r3882 r4338 173 173 public function testFailingRefresh() 174 174 { 175 $enum = $this->connection->get Mapper('EnumTest')->find(1);175 $enum = $this->connection->getRepository('EnumTest')->find(1); 176 176 177 177 $this->conn->exec('DELETE FROM enum_test WHERE id = 1');