Changeset 156
- Timestamp:
- 05/05/08 12:50:10 (8 months ago)
- Location:
- trunk
- Files:
-
- 6 added
- 3 modified
-
src/Stagehand/TestRunner/Collector/Common.php (modified) (1 diff)
-
src/Stagehand/TestRunner/Collector/PHPUnit.php (modified) (1 diff)
-
src/Stagehand/TestRunner/Collector/SimpleTest.php (modified) (1 diff)
-
tests/Stagehand/TestRunner/PHPSpecCommon.php (added)
-
tests/Stagehand/TestRunner/PHPSpecExtendedSpec.php (added)
-
tests/Stagehand/TestRunner/PHPUnitCommon.php (added)
-
tests/Stagehand/TestRunner/PHPUnitExtendedTest.php (added)
-
tests/Stagehand/TestRunner/SimpleTestCommon.php (added)
-
tests/Stagehand/TestRunner/SimpleTestExtendedTest.php (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/Stagehand/TestRunner/Collector/Common.php
r153 r156 67 67 protected $_excludePattern; 68 68 protected $_baseClass; 69 protected $_suffix = 'Test(?:Case)?';69 protected $_suffix; 70 70 protected $_includePattern; 71 71 -
trunk/src/Stagehand/TestRunner/Collector/PHPUnit.php
r151 r156 69 69 protected $_excludePattern = '^PHPUnit'; 70 70 protected $_baseClass = 'PHPUnit_Framework_TestCase'; 71 protected $_suffix = 'Test(?:Case)?'; 72 protected $_includePattern = 'Test(?:Case)?$'; 71 73 72 74 /**#@-*/ -
trunk/src/Stagehand/TestRunner/Collector/SimpleTest.php
r151 r156 72 72 protected $_excludePattern = '^(UnitTestCase$|PHPUnit)'; 73 73 protected $_baseClass = 'UnitTestCase'; 74 protected $_suffix = 'Test(?:Case)?'; 75 protected $_includePattern = 'Test(?:Case)?$'; 74 76 75 77 /**#@-*/
