Changeset 3203 for trunk/modules
- Timestamp:
- 07/23/2008 07:15:50 PM (4 months ago)
- Files:
-
- 1 modified
-
trunk/modules/unit_test/libraries/Unit_Test.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/unit_test/libraries/Unit_Test.php
r3163 r3203 141 141 } 142 142 143 xdebug_start_code_coverage(); 144 143 145 // Run the actual test 144 146 $object->$method_name(); 147 148 var_dump(xdebug_get_code_coverage()); 145 149 146 150 // Run teardown method … … 247 251 248 252 abstract class Unit_Test_Case { 253 254 // Mock Objects 255 public function get_mock_object($class) 256 { 257 258 259 260 } 261 249 262 250 263 public function assert_true($value, $debug = NULL) … … 480 493 } 481 494 495 496 497 498 482 499 } // End Unit_Test_Case 483 500 484 501 485 abstract class Database_ Unit_Test_Case {502 abstract class Database_Test_Case { 486 503 487 504
