Changeset 4032
- Timestamp:
- 03/19/08 01:50:39 (16 months ago)
- Location:
- branches/0.10/tests
- Files:
-
- 3 modified
-
Export/SchemaTestCase.php (modified) (1 diff)
-
ParserTestCase.php (modified) (2 diffs)
-
Transaction/MssqlTestCase.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.10/tests/Export/SchemaTestCase.php
r3884 r4032 58 58 $export = new Doctrine_Export_Schema(); 59 59 $export->exportSchema('schema-export.yml', 'yml', dirname(dirname(dirname(__FILE__))) . DIRECTORY_SEPARATOR . 'models', $this->tables); 60 unlink('schema-export.yml'); 60 61 } 61 62 } -
branches/0.10/tests/ParserTestCase.php
r3884 r4032 50 50 51 51 $this->assertEqual($array, array('test' => 'good job', 'test2' => true, array('testing' => false))); 52 unlink('test.yml'); 52 53 } 53 54 … … 74 75 75 76 $this->assertEqual('test', file_get_contents('test.yml')); 77 unlink('test.yml'); 76 78 } 77 79 -
branches/0.10/tests/Transaction/MssqlTestCase.php
r4031 r4032 31 31 * @version $Revision$ 32 32 */ 33 class Doctrine_Transaction_Mssql_TestCase extends Doctrine_ Driver_Unit_TestCase33 class Doctrine_Transaction_Mssql_TestCase extends Doctrine_UnitTestCase 34 34 { 35 35 public function testSetIsolationThrowsExceptionOnUnknownIsolationMode()