Changeset 1222
- Timestamp:
- 01/11/08 16:51:50 (7 months ago)
- Files:
-
- trunk/experiments/people/schst/ioc/constants.php (modified) (1 diff)
- trunk/experiments/people/schst/ioc/implemented-by.php (modified) (1 diff)
- trunk/experiments/people/schst/ioc/instance.php (modified) (1 diff)
- trunk/experiments/people/schst/ioc/naming.php (modified) (1 diff)
- trunk/experiments/people/schst/ioc/provider.php (modified) (1 diff)
- trunk/experiments/people/schst/ioc/simple.php (modified) (1 diff)
- trunk/experiments/people/schst/ioc/singleton-annotation.php (modified) (1 diff)
- trunk/experiments/people/schst/ioc/singleton.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/ioc/annotations/stubImplementedByAnnotation.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/ioc/annotations/stubInjectAnnotation.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/ioc/annotations/stubNamedAnnotation.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/ioc/annotations/stubSingletonAnnotation.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/ioc/exceptions/stubBindingException.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/ioc/ioc.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/ioc/stubAbstractIOCPreInterceptor.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/ioc/stubBinder.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/ioc/stubBinding.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/ioc/stubBindingModule.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/ioc/stubBindingScope.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/ioc/stubBindingScopeSingleton.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/ioc/stubBindingScopes.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/ioc/stubClassBinding.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/ioc/stubConstantBinding.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/ioc/stubDefaultInjectionProvider.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/ioc/stubIOCPreInterceptor.php (modified) (2 diffs)
- trunk/src/main/php/net/stubbles/ioc/stubInjectionProvider.php (modified) (1 diff)
- trunk/src/main/php/net/stubbles/ioc/stubInjector.php (modified) (1 diff)
- trunk/src/test/php/net/stubbles/ioc/annotations/stubImplementedByAnnotationTestCase.php (modified) (3 diffs)
- trunk/src/test/php/net/stubbles/ioc/annotations/stubInjectAnnotationTestCase.php (modified) (2 diffs)
- trunk/src/test/php/net/stubbles/ioc/annotations/stubNamedAnnotationTestCase.php (modified) (2 diffs)
- trunk/src/test/php/net/stubbles/ioc/annotations/stubSingletonAnnotationTestCase.php (modified) (2 diffs)
- trunk/src/test/php/net/stubbles/ioc/injection (deleted)
- trunk/src/test/php/net/stubbles/ioc/stubBinderTestCase.php (modified) (2 diffs)
- trunk/src/test/php/net/stubbles/ioc/stubIOCPreInterceptorTestCase.php (modified) (5 diffs)
- trunk/src/test/php/net/stubbles/ioc/stubInjectorBasicTestCase.php (modified) (1 diff)
- trunk/src/test/php/net/stubbles/ioc/stubInjectorConstantTestCase.php (modified) (3 diffs)
- trunk/src/test/php/net/stubbles/ioc/stubInjectorImplementedByTestCase.php (modified) (3 diffs)
- trunk/src/test/php/net/stubbles/ioc/stubInjectorNamedTestCase.php (modified) (3 diffs)
- trunk/src/test/php/net/stubbles/ioc/stubInjectorSingletonTestCase.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/experiments/people/schst/ioc/constants.php
r852 r1222 32 32 } 33 33 34 stubClassLoader::load('net .stubbles.ioc.stubBinder');34 stubClassLoader::load('net::stubbles::ioc::stubBinder'); 35 35 36 36 $binder = new stubBinder(); trunk/experiments/people/schst/ioc/implemented-by.php
r852 r1222 38 38 39 39 40 stubClassLoader::load('net .stubbles.ioc.stubBinder');40 stubClassLoader::load('net::stubbles::ioc::stubBinder'); 41 41 42 42 $injector = new stubInjector(); trunk/experiments/people/schst/ioc/instance.php
r852 r1222 50 50 } 51 51 52 stubClassLoader::load('net .stubbles.ioc.stubBinder');52 stubClassLoader::load('net::stubbles::ioc::stubBinder'); 53 53 54 54 $injector = new stubInjector(); trunk/experiments/people/schst/ioc/naming.php
r852 r1222 65 65 } 66 66 67 stubClassLoader::load('net .stubbles.ioc.stubBinder');67 stubClassLoader::load('net::stubbles::ioc::stubBinder'); 68 68 69 69 $injector = new stubInjector(); trunk/experiments/people/schst/ioc/provider.php
r863 r1222 16 16 } 17 17 18 stubClassLoader::load('net .stubbles.ioc.ioc');18 stubClassLoader::load('net::stubbles::ioc::ioc'); 19 19 20 20 trunk/experiments/people/schst/ioc/simple.php
r864 r1222 100 100 } 101 101 102 stubClassLoader::load('net .stubbles.ioc.stubBinder');102 stubClassLoader::load('net::stubbles::ioc::stubBinder'); 103 103 104 104 $binder = new stubBinder(); trunk/experiments/people/schst/ioc/singleton-annotation.php
r852 r1222 82 82 } 83 83 84 stubClassLoader::load('net .stubbles.ioc.stubBinder');84 stubClassLoader::load('net::stubbles::ioc::stubBinder'); 85 85 86 86 $injector = new stubInjector(); trunk/experiments/people/schst/ioc/singleton.php
r852 r1222 77 77 } 78 78 79 stubClassLoader::load('net .stubbles.ioc.stubBinder',80 'net .stubbles.ioc.stubBindingScopes');79 stubClassLoader::load('net::stubbles::ioc::stubBinder', 80 'net::stubbles::ioc::stubBindingScopes'); 81 81 82 82 $injector = new stubInjector(); trunk/src/main/php/net/stubbles/ioc/annotations/stubImplementedByAnnotation.php
r1197 r1222 7 7 * @subpackage ioc_annotations 8 8 */ 9 stubClassLoader::load('net .stubbles.reflection.annotations.stubAbstractAnnotation',10 'net .stubbles.reflection.stubReflectionClass'9 stubClassLoader::load('net::stubbles::reflection::annotations::stubAbstractAnnotation', 10 'net::stubbles::reflection::stubReflectionClass' 11 11 ); 12 12 /** trunk/src/main/php/net/stubbles/ioc/annotations/stubInjectAnnotation.php
r1127 r1222 7 7 * @subpackage ioc_annotations 8 8 */ 9 stubClassLoader::load('net .stubbles.reflection.annotations.stubAbstractAnnotation');9 stubClassLoader::load('net::stubbles::reflection::annotations::stubAbstractAnnotation'); 10 10 /** 11 11 * Annotation to mark a method that is used for dependency injection trunk/src/main/php/net/stubbles/ioc/annotations/stubNamedAnnotation.php
r1127 r1222 7 7 * @subpackage ioc_annotations 8 8 */ 9 stubClassLoader::load('net .stubbles.reflection.annotations.stubAbstractAnnotation');9 stubClassLoader::load('net::stubbles::reflection::annotations::stubAbstractAnnotation'); 10 10 /** 11 11 * Annotation to name an injection trunk/src/main/php/net/stubbles/ioc/annotations/stubSingletonAnnotation.php
r1127 r1222 8 8 */ 9 9 10 stubClassLoader::load('net .stubbles.reflection.annotations.stubAbstractAnnotation');10 stubClassLoader::load('net::stubbles::reflection::annotations::stubAbstractAnnotation'); 11 11 12 12 /** trunk/src/main/php/net/stubbles/ioc/exceptions/stubBindingException.php
r1127 r1222 8 8 */ 9 9 10 stubClassLoader::load('net .stubbles.ioc.exceptions.stubInjectionException');10 stubClassLoader::load('net::stubbles::ioc::exceptions::stubInjectionException'); 11 11 12 12 /** trunk/src/main/php/net/stubbles/ioc/ioc.php
r1009 r1222 7 7 * @subpackage ioc 8 8 */ 9 stubClassLoader::load('net .stubbles.ioc.stubBinder');9 stubClassLoader::load('net::stubbles::ioc::stubBinder'); 10 10 ?> trunk/src/main/php/net/stubbles/ioc/stubAbstractIOCPreInterceptor.php
r1006 r1222 7 7 * @subpackage ioc 8 8 */ 9 stubClassLoader::load('net .stubbles.ipo.interceptors.stubPreInterceptor',10 'net .stubbles.ioc.stubBinder',11 'net .stubbles.util.stubRegistry'9 stubClassLoader::load('net::stubbles::ipo::interceptors::stubPreInterceptor', 10 'net::stubbles::ioc::stubBinder', 11 'net::stubbles::util::stubRegistry' 12 12 ); 13 13 /** trunk/src/main/php/net/stubbles/ioc/stubBinder.php
r1127 r1222 10 10 * @subpackage ioc 11 11 */ 12 stubClassLoader::load('net .stubbles.reflection.stubReflectionClass',13 'net .stubbles.ioc.stubBinding',14 'net .stubbles.ioc.stubClassBinding',15 'net .stubbles.ioc.stubConstantBinding',16 'net .stubbles.ioc.stubInjector',17 'net .stubbles.ioc.stubBindingScope',18 'net .stubbles.ioc.stubBindingScopes',19 'net .stubbles.ioc.annotations.stubInjectAnnotation',20 'net .stubbles.ioc.annotations.stubSingletonAnnotation',21 'net .stubbles.ioc.annotations.stubNamedAnnotation',22 'net .stubbles.ioc.annotations.stubImplementedByAnnotation');12 stubClassLoader::load('net::stubbles::reflection::stubReflectionClass', 13 'net::stubbles::ioc::stubBinding', 14 'net::stubbles::ioc::stubClassBinding', 15 'net::stubbles::ioc::stubConstantBinding', 16 'net::stubbles::ioc::stubInjector', 17 'net::stubbles::ioc::stubBindingScope', 18 'net::stubbles::ioc::stubBindingScopes', 19 'net::stubbles::ioc::annotations::stubInjectAnnotation', 20 'net::stubbles::ioc::annotations::stubSingletonAnnotation', 21 'net::stubbles::ioc::annotations::stubNamedAnnotation', 22 'net::stubbles::ioc::annotations::stubImplementedByAnnotation'); 23 23 /** 24 24 * Binder for the IoC functionality. trunk/src/main/php/net/stubbles/ioc/stubBinding.php
r1176 r1222 7 7 * @subpackage ioc 8 8 */ 9 stubClassLoader::load('net .stubbles.ioc.exceptions.stubBindingException');9 stubClassLoader::load('net::stubbles::ioc::exceptions::stubBindingException'); 10 10 /** 11 11 * Binding to bind an interface to an implementation trunk/src/main/php/net/stubbles/ioc/stubBindingModule.php
r1127 r1222 7 7 * @subpackage ioc 8 8 */ 9 stubClassLoader::load('net .stubbles.ioc.stubBinder');9 stubClassLoader::load('net::stubbles::ioc::stubBinder'); 10 10 /** 11 11 * Interface for modules that bootstrap all bindings trunk/src/main/php/net/stubbles/ioc/stubBindingScope.php
r1177 r1222 7 7 * @subpackage ioc 8 8 */ 9 stubClassLoader::load('net .stubbles.ioc.stubInjectionProvider',10 'net .stubbles.reflection.stubBaseReflectionClass'9 stubClassLoader::load('net::stubbles::ioc::stubInjectionProvider', 10 'net::stubbles::reflection::stubBaseReflectionClass' 11 11 ); 12 12 /** trunk/src/main/php/net/stubbles/ioc/stubBindingScopeSingleton.php
r1177 r1222 7 7 * @subpackage ioc 8 8 */ 9 stubClassLoader::load('net .stubbles.ioc.stubBindingScope',10 'net .stubbles.reflection.stubBaseReflectionClass'9 stubClassLoader::load('net::stubbles::ioc::stubBindingScope', 10 'net::stubbles::reflection::stubBaseReflectionClass' 11 11 ); 12 12 /** trunk/src/main/php/net/stubbles/ioc/stubBindingScopes.php
r1127 r1222 7 7 * @subpackage ioc 8 8 */ 9 stubClassLoader::load('net .stubbles.ioc.stubBindingScopeSingleton');9 stubClassLoader::load('net::stubbles::ioc::stubBindingScopeSingleton'); 10 10 /** 11 11 * All built-in scopes trunk/src/main/php/net/stubbles/ioc/stubClassBinding.php
r1179 r1222 7 7 * @subpackage ioc 8 8 */ 9 stubClassLoader::load('net .stubbles.ioc.exceptions.stubBindingException',10 'net .stubbles.ioc.stubDefaultInjectionProvider',11 'net .stubbles.reflection.stubReflectionClass'9 stubClassLoader::load('net::stubbles::ioc::exceptions::stubBindingException', 10 'net::stubbles::ioc::stubDefaultInjectionProvider', 11 'net::stubbles::reflection::stubReflectionClass' 12 12 ); 13 13 /** trunk/src/main/php/net/stubbles/ioc/stubConstantBinding.php
r1176 r1222 7 7 * @subpackage ioc 8 8 */ 9 stubClassLoader::load('net .stubbles.ioc.exceptions.stubBinding');9 stubClassLoader::load('net::stubbles::ioc::exceptions::stubBinding'); 10 10 /** 11 11 * Binding to bind a property to a constant value. trunk/src/main/php/net/stubbles/ioc/stubDefaultInjectionProvider.php
r1177 r1222 8 8 * @subpackage ioc 9 9 */ 10 stubClassLoader::load('net .stubbles.ioc.stubInjectionProvider',11 'net .stubbles.ioc.stubInjector',12 'net .stubbles.reflection.stubBaseReflectionClass'10 stubClassLoader::load('net::stubbles::ioc::stubInjectionProvider', 11 'net::stubbles::ioc::stubInjector', 12 'net::stubbles::reflection::stubBaseReflectionClass' 13 13 ); 14 14 /** trunk/src/main/php/net/stubbles/ioc/stubIOCPreInterceptor.php
r1006 r1222 8 8 * @subpackage ioc 9 9 */ 10 stubClassLoader::load('net .stubbles.ipo.interceptors.stubPreInterceptor',11 'net .stubbles.ioc.stubBinder',12 'net .stubbles.util.stubRegistry'10 stubClassLoader::load('net::stubbles::ipo::interceptors.stubPreInterceptor', 11 'net::stubbles::ioc::stubBinder', 12 'net::stubbles::util::stubRegistry' 13 13 ); 14 14 /** … … 34 34 stubRegistry::set(stubBinder::REGISTRY_KEY, $binder); 35 35 } 36 36 37 $binder->bind('stubRequest')->toInstance($request); 37 38 $binder->bind('stubSession')->toInstance($session); trunk/src/main/php/net/stubbles/ioc/stubInjectionProvider.php
r1177 r1222 8 8 * @subpackage ioc 9 9 */ 10 stubClassLoader::load('net .stubbles.reflection.stubBaseReflectionClass');10 stubClassLoader::load('net::stubbles::reflection::stubBaseReflectionClass'); 11 11 /** 12 12 * Interface for providers that create objects that are required by the trunk/src/main/php/net/stubbles/ioc/stubInjector.php
r1181 r1222 8 8 * @subpackage ioc 9 9 */ 10 stubClassLoader::load('net .stubbles.ioc.exceptions.stubBindingException',11 'net .stubbles.reflection.stubReflectionClass'10 stubClassLoader::load('net::stubbles::ioc::exceptions::stubBindingException', 11 'net::stubbles::reflection::stubReflectionClass' 12 12 ); 13 13 /** trunk/src/test/php/net/stubbles/ioc/annotations/stubImplementedByAnnotationTestCase.php
r1025 r1222 1 1 <?php 2 2 /** 3 * Test for net .stubbles.ioc.annotations.stubImplementedByAnnotation3 * Test for net::stubbles::ioc::annotations::stubImplementedByAnnotation. 4 4 * 5 5 * @author Stephan Schmidt <schst@stubbles.net> … … 7 7 * @subpackage ioc_injection_test 8 8 */ 9 stubClassLoader::load('net .stubbles.ioc.annotations.stubImplementedByAnnotation',10 'net .stubbles.reflection.stubReflectionClass'9 stubClassLoader::load('net::stubbles::ioc::annotations::stubImplementedByAnnotation', 10 'net::stubbles::reflection::stubReflectionClass' 11 11 ); 12 12 … … 15 15 16 16 /** 17 * Test for net .stubbles.ioc.annotations.stubImplementedByAnnotation17 * Test for net::stubbles::ioc::annotations::stubImplementedByAnnotation. 18 18 * 19 19 * @package stubbles trunk/src/test/php/net/stubbles/ioc/annotations/stubInjectAnnotationTestCase.php
r854 r1222 1 1 <?php 2 2 /** 3 * Test for net .stubbles.ioc.annotations.stubInjectAnnotation3 * Test for net::stubbles::ioc::annotations::stubInjectAnnotation. 4 4 * 5 5 * @author Stephan Schmidt <schst@stubbles.net> … … 7 7 * @subpackage ioc_injection_test 8 8 */ 9 stubClassLoader::load('net .stubbles.ioc.annotations.stubInjectAnnotation');9 stubClassLoader::load('net::stubbles::ioc::annotations::stubInjectAnnotation'); 10 10 11 11 /** 12 * Test for net .stubbles.ioc.annotations.stubInjectAnnotation12 * Test for net::stubbles::ioc::annotations::stubInjectAnnotation. 13 13 * 14 14 * @package stubbles trunk/src/test/php/net/stubbles/ioc/annotations/stubNamedAnnotationTestCase.php
r854 r1222 1 1 <?php 2 2 /** 3 * Test for net .stubbles.ioc.annotations.stubNamedAnnotation3 * Test for net::stubbles::ioc::annotations::stubNamedAnnotation. 4 4 * 5 5 * @author Stephan Schmidt <schst@stubbles.net> … … 7 7 * @subpackage ioc_injection_test 8 8 */ 9 stubClassLoader::load('net .stubbles.ioc.annotations.stubNamedAnnotation');9 stubClassLoader::load('net::stubbles::ioc.::annotations::stubNamedAnnotation'); 10 10 11 11 /** 12 * Test for net .stubbles.ioc.annotations.stubNamedAnnotation12 * Test for net::stubbles::ioc::annotations::stubNamedAnnotation. 13 13 * 14 14 * @package stubbles trunk/src/test/php/net/stubbles/ioc/annotations/stubSingletonAnnotationTestCase.php
r854 r1222 1 1 <?php 2 2 /** 3 * Test for net .stubbles.ioc.annotations.stubSingletonAnnotation3 * Test for net::stubbles::ioc::annotations::stubSingletonAnnotation. 4 4 * 5 5 * @author Stephan Schmidt <schst@stubbles.net> … … 7 7 * @subpackage ioc_injection_test 8 8 */ 9 stubClassLoader::load('net .stubbles.ioc.annotations.stubSingletonAnnotation');9 stubClassLoader::load('net::stubbles::ioc::annotations::stubSingletonAnnotation'); 10 10 11 11 /** 12 * Test for net .stubbles.ioc.annotations.stubNamedAnnotation12 * Test for net::stubbles::ioc::annotations::stubNamedAnnotation. 13 13 * 14 14 * @package stubbles trunk/src/test/php/net/stubbles/ioc/stubBinderTestCase.php
r854 r1222 1 1 <?php 2 2 /** 3 * Test for net. stubbles.ioc.stubBinder3 * Test for net.::stubbles::ioc::stubBinder 4 4 * 5 5 * @author Stephan Schmidt <schst@stubbles.net> … … 7 7 * @subpackage ioc_injection_test 8 8 */ 9 stubClassLoader::load('net .stubbles.ioc.stubBinder');9 stubClassLoader::load('net::stubbles::ioc::stubBinder'); 10 10 11 11 /** 12 * Test for net .stubbles.ioc.stubBinder12 * Test for net::stubbles::ioc::stubBinder 13 13 * 14 14 * @package stubbles trunk/src/test/php/net/stubbles/ioc/stubIOCPreInterceptorTestCase.php
r867 r1222 1 1 <?php 2 2 /** 3 * Test for net .stubbles.ioc.stubIOCPreInterceptor.3 * Test for net::stubbles::ioc::stubIOCPreInterceptor. 4 4 * 5 5 * @author Frank Kleine <mikey@stubbles.net> … … 7 7 * @subpackage ioc_test 8 8 */ 9 stubClassLoader::load('net .stubbles.ioc.stubIOCPreInterceptor');9 stubClassLoader::load('net::stubbles::ioc::stubIOCPreInterceptor'); 10 10 Mock::generate('stubRequest'); 11 11 Mock::generate('stubSession'); 12 12 Mock::generate('stubResponse'); 13 13 /** 14 * Test for net .stubbles.ioc.stubIOCPreInterceptor.14 * Test for net::stubbles::ioc::stubIOCPreInterceptor. 15 15 * 16 16 * @package stubbles … … 53 53 $this->mockSession = new MockstubSession(); 54 54 $this->mockResponse = new MockstubResponse(); 55 stubRegistry::remove( 'net.stubbles.ioc.stubBinder');55 stubRegistry::remove(stubBinder::REGISTRY_KEY); 56 56 } 57 57 … … 61 61 public function tearDown() 62 62 { 63 stubRegistry::remove( 'net.stubbles.ioc.stubBinder');63 stubRegistry::remove(stubBinder::REGISTRY_KEY); 64 64 } 65 65 … … 70 70 { 71 71 $this->iocPreInterceptor->preProcess($this->mockRequest, $this->mockSession, $this->mockResponse); 72 $binder = stubRegistry::get( 'net.stubbles.ioc.stubBinder');72 $binder = stubRegistry::get(stubBinder::REGISTRY_KEY); 73 73 $this->assertIsA($binder, 'stubBinder'); 74 74 $injector = $binder->getInjector(); trunk/src/test/php/net/stubbles/ioc/stubInjectorBasicTestCase.php
r1181 r1222 8 8 * @subpackage ioc_test 9 9 */ 10 stubClassLoader::load('net .stubbles.ioc.stubBinder');10 stubClassLoader::load('net::stubbles::ioc::stubBinder'); 11 11 /** 12 12 * Helper interface for injection and binding tests. trunk/src/test/php/net/stubbles/ioc/stubInjectorConstantTestCase.php
r854 r1222 1 1 <?php 2 2 /** 3 * Test for net.stubbles.ioc.stubInjector with 4 * constant binding 3 * Test for net::stubbles::ioc::stubInjector with constant binding. 5 4 * 6 5 * @author Stephan Schmidt <schst@stubbles.net> … … 8 7 * @subpackage ioc_injection_test 9 8 */ 10 stubClassLoader::load('net .stubbles.ioc.stubBinder');9 stubClassLoader::load('net::stubbles::ioc::stubBinder'); 11 10 12 11 class stubInjectorConstantTestCase_Question { … … 27 26 28 27 /** 29 * Test for net .stubbles.ioc.stubInjector with @Named28 * Test for net::stubbles::ioc::stubInjector with constant binding. 30 29 * 31 30 * @package stubbles trunk/src/test/php/net/stubbles/ioc/stubInjectorImplementedByTestCase.php
r854 r1222 1 1 <?php 2 2 /** 3 * Test for net.stubbles.ioc.stubInjector with the 4 * ImplementedBy annotation 3 * Test for net::stubbles::ioc::stubInjector with the ImplementedBy annotation. 5 4 * 6 5 * @author Stephan Schmidt <schst@stubbles.net> … … 8 7 * @subpackage ioc_injection_test 9 8 */ 10 stubClassLoader::load('net .stubbles.ioc.stubBinder');9 stubClassLoader::load('net::stubbles::ioc::stubBinder'); 11 10 12 11 /** … … 32 31 33 32 /** 34 * Test for net.stubbles.ioc.stubInjector with the 35 * ImplementedBy annotation 33 * Test for net.::stubbles::ioc::stubInjector with the ImplementedBy annotation. 36 34 * 37 35 * @package stubbles trunk/src/test/php/net/stubbles/ioc/stubInjectorNamedTestCase.php
r854 r1222 1 1 <?php 2 2 /** 3 * Test for net .stubbles.ioc.stubInjector with @Named3 * Test for net::stubbles::ioc::stubInjector with @Named annotation. 4 4 * 5 5 * @author Stephan Schmidt <schst@stubbles.net> … … 7 7 * @subpackage ioc_injection_test 8 8 */ 9 stubClassLoader::load('net .stubbles.ioc.stubBinder');9 stubClassLoader::load('net::stubbles::ioc::stubBinder'); 10 10 11 11 … … 53 53 54 54 /** 55 * Test for net .stubbles.ioc.stubInjector with @Named55 * Test for net::stubbles::ioc::stubInjector with @Named annotation. 56 56 * 57 57 * @package stubbles trunk/src/test/php/net/stubbles/ioc/stubInjectorSingletonTestCase.php
r855 r1222 1 1 <?php 2 2 /** 3 * Test for net.stubbles.ioc.stubInjector with the 4 * singleton scope 3 * Test for net::stubbles::ioc::stubInjector with the singleton scope. 5 4 * 6 5 * @author Stephan Schmidt <schst@stubbles.net> … … 8 7 * @subpackage ioc_injection_test 9 8 */ 10 stubClassLoader::load('net .stubbles.ioc.stubBinder');9 stubClassLoader::load('net::stubbles::ioc::stubBinder'); 11 10 12 11 interface stubInjectorSingletonTestCase_Number { … … 75 74 76 75 /** 77 * Test for net.stubbles.ioc.stubInjector with the 78 * singleton scope 76 * Test for net::stubbles::ioc::stubInjector with the singleton scope. 79 77 * 80 78 * @package stubbles
