Changeset 454
- Timestamp:
- 04/02/07 23:43:45 (2 years ago)
- Files:
-
- trunk/src/main/php/net/stubbles/reflection/annotations/parser/state (added)
- trunk/src/main/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationAbstractState.php (moved) (moved from trunk/src/main/php/net/stubbles/reflection/annotations/parser/stubAnnotationAbstractState.php)
- trunk/src/main/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationAnnotationState.php (moved) (moved from trunk/src/main/php/net/stubbles/reflection/annotations/parser/stubAnnotationAnnotationState.php)
- trunk/src/main/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationDocblockState.php (moved) (moved from trunk/src/main/php/net/stubbles/reflection/annotations/parser/stubAnnotationDocblockState.php)
- trunk/src/main/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationNameState.php (moved) (moved from trunk/src/main/php/net/stubbles/reflection/annotations/parser/stubAnnotationNameState.php)
- trunk/src/main/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationParamNameState.php (moved) (moved from trunk/src/main/php/net/stubbles/reflection/annotations/parser/stubAnnotationParamNameState.php)
- trunk/src/main/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationParamValueState.php (moved) (moved from trunk/src/main/php/net/stubbles/reflection/annotations/parser/stubAnnotationParamValueState.php)
- trunk/src/main/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationParamsState.php (moved) (moved from trunk/src/main/php/net/stubbles/reflection/annotations/parser/stubAnnotationParamsState.php)
- trunk/src/main/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationState.php (moved) (moved from trunk/src/main/php/net/stubbles/reflection/annotations/parser/stubAnnotationState.php)
- trunk/src/main/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationTypeState.php (moved) (moved from trunk/src/main/php/net/stubbles/reflection/annotations/parser/stubAnnotationTypeState.php)
- trunk/src/test/php/net/stubbles/reflection/ReflectionTestSuite.php (modified) (1 diff)
- trunk/src/test/php/net/stubbles/reflection/annotations/parser (added)
- trunk/src/test/php/net/stubbles/reflection/annotations/parser/state (added)
- trunk/src/test/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationAnnotationStateTestCase.php (added)
- trunk/src/test/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationDocblockStateTestCase.php (added)
- trunk/src/test/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationNameStateTestCase.php (added)
- trunk/src/test/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationParamNameStateTestCase.php (added)
- trunk/src/test/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationParamValueStateTestCase.php (added)
- trunk/src/test/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationParamsStateTestCase.php (added)
- trunk/src/test/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationTextStateTestCase.php (added)
- trunk/src/test/php/net/stubbles/reflection/annotations/parser/state/stubAnnotationTypeStateTestCase.php (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/test/php/net/stubbles/reflection/ReflectionTestSuite.php
r432 r454 21 21 { 22 22 $this->TestSuite('All Reflection tests'); 23 // annotations 23 24 $this->addTestFile(dirname(__FILE__) . '/annotations/stubAnnotationFactoryTestCase.php'); 24 25 $this->addTestFile(dirname(__FILE__) . '/annotations/stubAnnotationFactoryApplicableTestCase.php'); 25 26 $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 26 39 $this->addTestFile(dirname(__FILE__) . '/stubReflectionClassTestCase.php'); 27 40 $this->addTestFile(dirname(__FILE__) . '/stubReflectionExtensionTestCase.php');
