Show
Ignore:
Timestamp:
11/15/07 13:17:47 (1 year ago)
Author:
hans
Message:

Refs #188 - Adding work-in-progress (still-broken!) namespace support.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/test/run-tests.php

    r123 r307  
    1313 
    1414// STARTUP PHING 
    15 require_once 'phing/Phing.php'; 
     15 
    1616 
    1717Phing::startup(); 
     
    2828 
    2929$coreSuite = new PHPUnit2_Framework_TestSuite("Phing Core"); 
    30 include_once 'phing/IntrospectionHelperTest.php'; 
     30 
    3131$coreSuite->addTestSuite(new ReflectionClass('IntrospectionHelperTest')); 
    3232 
     
    3838$typesSuite = new PHPUnit2_Framework_TestSuite("Phing Types"); 
    3939 
    40 include_once 'phing/types/MapperTest.php'; 
     40 
    4141$typesSuite->addTestSuite(new ReflectionClass('MapperTest')); 
    4242 
    43 include_once 'phing/filters/LineContainsTest.php'; 
     43 
    4444$typesSuite->addTestSuite(new ReflectionClass('LineContainsTest')); 
    4545 
    46 include_once 'phing/types/CommandlineTest.php'; 
     46 
    4747$typesSuite->addTestSuite(new ReflectionClass('CommandlineTest')); 
    4848 
    49 include_once 'phing/types/FileSetTest.php'; 
     49 
    5050$typesSuite->addTestSuite(new ReflectionClass('FileSetTest')); 
    5151 
     
    5656$tasksSuite = new PHPUnit2_Framework_TestSuite("Phing Tasks"); 
    5757 
    58 include_once 'phing/tasks/TypedefTaskTest.php'; 
     58 
    5959$tasksSuite->addTestSuite(new ReflectionClass('TypedefTaskTest')); 
    6060 
    6161 
    6262// Conditions 
    63 include_once 'phing/tasks/condition/ContainsConditionTest.php'; 
    64 include_once 'phing/tasks/condition/EqualsConditionTest.php'; 
     63 
     64 
    6565$tasksSuite->addTestSuite(new ReflectionClass('ContainsConditionTest')); 
    6666$tasksSuite->addTestSuite(new ReflectionClass('EqualsConditionTest')); 
    6767 
    68 include_once 'phing/tasks/PropertyTaskTest.php'; 
     68 
    6969$tasksSuite->addTestSuite(new ReflectionClass('PropertyTaskTest')); 
    7070