Changeset 307 for trunk/test/run-tests.php
- Timestamp:
- 11/15/07 13:17:47 (1 year ago)
- Files:
-
- trunk/test/run-tests.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/test/run-tests.php
r123 r307 13 13 14 14 // STARTUP PHING 15 require_once 'phing/Phing.php'; 15 16 16 17 17 Phing::startup(); … … 28 28 29 29 $coreSuite = new PHPUnit2_Framework_TestSuite("Phing Core"); 30 include_once 'phing/IntrospectionHelperTest.php'; 30 31 31 $coreSuite->addTestSuite(new ReflectionClass('IntrospectionHelperTest')); 32 32 … … 38 38 $typesSuite = new PHPUnit2_Framework_TestSuite("Phing Types"); 39 39 40 include_once 'phing/types/MapperTest.php'; 40 41 41 $typesSuite->addTestSuite(new ReflectionClass('MapperTest')); 42 42 43 include_once 'phing/filters/LineContainsTest.php'; 43 44 44 $typesSuite->addTestSuite(new ReflectionClass('LineContainsTest')); 45 45 46 include_once 'phing/types/CommandlineTest.php'; 46 47 47 $typesSuite->addTestSuite(new ReflectionClass('CommandlineTest')); 48 48 49 include_once 'phing/types/FileSetTest.php'; 49 50 50 $typesSuite->addTestSuite(new ReflectionClass('FileSetTest')); 51 51 … … 56 56 $tasksSuite = new PHPUnit2_Framework_TestSuite("Phing Tasks"); 57 57 58 include_once 'phing/tasks/TypedefTaskTest.php'; 58 59 59 $tasksSuite->addTestSuite(new ReflectionClass('TypedefTaskTest')); 60 60 61 61 62 62 // Conditions 63 include_once 'phing/tasks/condition/ContainsConditionTest.php'; 64 include_once 'phing/tasks/condition/EqualsConditionTest.php'; 63 64 65 65 $tasksSuite->addTestSuite(new ReflectionClass('ContainsConditionTest')); 66 66 $tasksSuite->addTestSuite(new ReflectionClass('EqualsConditionTest')); 67 67 68 include_once 'phing/tasks/PropertyTaskTest.php'; 68 69 69 $tasksSuite->addTestSuite(new ReflectionClass('PropertyTaskTest')); 70 70
