Changeset 454

Show
Ignore:
Timestamp:
04/02/07 23:43:45 (2 years ago)
Author:
mikey
Message:

moved states into their own subpackage
added unit tests for states

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/test/php/net/stubbles/reflection/ReflectionTestSuite.php

    r432 r454  
    2121    { 
    2222        $this->TestSuite('All Reflection tests'); 
     23        // annotations 
    2324        $this->addTestFile(dirname(__FILE__) . '/annotations/stubAnnotationFactoryTestCase.php'); 
    2425        $this->addTestFile(dirname(__FILE__) . '/annotations/stubAnnotationFactoryApplicableTestCase.php'); 
    2526        $this->addTestFile(dirname(__FILE__) . '/annotations/stubAnnotationFactoryBuildTestCase.php'); 
     27         
     28        // parser 
     29        $this->addTestFile(dirname(__FILE__) . '/annotations/parser/state/stubAnnotationAnnotationStateTestCase.php'); 
     30        $this->addTestFile(dirname(__FILE__) . '/annotations/parser/state/stubAnnotationDocblockStateTestCase.php'); 
     31        $this->addTestFile(dirname(__FILE__) . '/annotations/parser/state/stubAnnotationNameStateTestCase.php'); 
     32        $this->addTestFile(dirname(__FILE__) . '/annotations/parser/state/stubAnnotationParamNameStateTestCase.php'); 
     33        $this->addTestFile(dirname(__FILE__) . '/annotations/parser/state/stubAnnotationParamsStateTestCase.php'); 
     34        $this->addTestFile(dirname(__FILE__) . '/annotations/parser/state/stubAnnotationParamValueStateTestCase.php'); 
     35        $this->addTestFile(dirname(__FILE__) . '/annotations/parser/state/stubAnnotationTextStateTestCase.php'); 
     36        $this->addTestFile(dirname(__FILE__) . '/annotations/parser/state/stubAnnotationTypeStateTestCase.php'); 
     37         
     38        // default reflection package 
    2639        $this->addTestFile(dirname(__FILE__) . '/stubReflectionClassTestCase.php'); 
    2740        $this->addTestFile(dirname(__FILE__) . '/stubReflectionExtensionTestCase.php');