arg1 = $arg1; $this->arg2 = $arg2; } } class Swift_DependencyContainerTest extends PHPUnit_Framework_TestCase { private $_container; protected function setUp() { $this->_container = new Swift_DependencyContainer(); } public function testRegisterAndLookupValue() { $this->_container->register('foo')->asValue('bar'); $this->assertEquals('bar', $this->_container->lookup('foo')); } public function testHasReturnsTrueForRegisteredValue() { $this->_container->register('foo')->asValue('bar'); $this->assertTrue($this->_container->has('foo')); } public function testHasReturnsFalseForUnregisteredValue() { $this->assertFalse($this->_container->has('foo')); } public function testRegisterAndLookupNewInstance() { $this->_container->register('one')->asNewInstanceOf('One'); $this->assertInstanceOf('One', $this->_container->lookup('one')); } public function testHasReturnsTrueForRegisteredInstance() { $this->_container->register('one')->asNewInstanceOf('One'); $this->assertTrue($this->_container->has('one')); } public function testNewInstanceIsAlwaysNew() { $this->_container->register('one')->asNewInstanceOf('One'); $a = $this->_container->lookup('one'); $b = $this->_container->lookup('one'); $this->assertEquals($a, $b); } public function testRegisterAndLookupSharedInstance() { $this->_container->register('one')->asSharedInstanceOf('One'); $this->assertInstanceOf('One', $this->_container->lookup('one')); } public function testHasReturnsTrueForSharedInstance() { $this->_container->register('one')->asSharedInstanceOf('One'); $this->assertTrue($this->_container->has('one')); } public function testMultipleSharedInstancesAreSameInstance() { $this->_container->register('one')->asSharedInstanceOf('One'); $a = $this->_container->lookup('one'); $b = $this->_container->lookup('one'); $this->assertEquals($a, $b); } public function testNewInstanceWithDependencies() { $this->_container->register('foo')->asValue('FOO'); $this->_container->register('one')->asNewInstanceOf('One') ->withDependencies(array('foo')); $obj = $this->_container->lookup('one'); $this->assertSame('FOO', $obj->arg1); } public function testNewInstanceWithMultipleDependencies() { $this->_container->register('foo')->asValue('FOO'); $this->_container->register('bar')->asValue(42); $this->_container->register('one')->asNewInstanceOf('One') ->withDependencies(array('foo', 'bar')); $obj = $this->_container->lookup('one'); $this->assertSame('FOO', $obj->arg1); $this->assertSame(42, $obj->arg2); } public function testNewInstanceWithInjectedObjects() { $this->_container->register('foo')->asValue('FOO'); $this->_container->register('one')->asNewInstanceOf('One'); $this->_container->register('two')->asNewInstanceOf('One') ->withDependencies(array('one', 'foo')); $obj = $this->_container->lookup('two'); $this->assertEquals($this->_container->lookup('one'), $obj->arg1); $this->assertSame('FOO', $obj->arg2); } public function testNewInstanceWithAddConstructorValue() { $this->_container->register('one')->asNewInstanceOf('One') ->addConstructorValue('x') ->addConstructorValue(99); $obj = $this->_container->lookup('one'); $this->assertSame('x', $obj->arg1); $this->assertSame(99, $obj->arg2); } public function testNewInstanceWithAddConstructorLookup() { $this->_container->register('foo')->asValue('FOO'); $this->_container->register('bar')->asValue(42); $this->_container->register('one')->asNewInstanceOf('One') ->addConstructorLookup('foo') ->addConstructorLookup('bar'); $obj = $this->_container->lookup('one'); $this->assertSame('FOO', $obj->arg1); $this->assertSame(42, $obj->arg2); } public function testResolvedDependenciesCanBeLookedUp() { $this->_container->register('foo')->asValue('FOO'); $this->_container->register('one')->asNewInstanceOf('One'); $this->_container->register('two')->asNewInstanceOf('One') ->withDependencies(array('one', 'foo')); $deps = $this->_container->createDependenciesFor('two'); $this->assertEquals( array($this->_container->lookup('one'), 'FOO'), $deps ); } public function testArrayOfDependenciesCanBeSpecified() { $this->_container->register('foo')->asValue('FOO'); $this->_container->register('one')->asNewInstanceOf('One'); $this->_container->register('two')->asNewInstanceOf('One') ->withDependencies(array(array('one', 'foo'), 'foo')); $obj = $this->_container->lookup('two'); $this->assertEquals(array($this->_container->lookup('one'), 'FOO'), $obj->arg1); $this->assertSame('FOO', $obj->arg2); } public function testAliasCanBeSet() { $this->_container->register('foo')->asValue('FOO'); $this->_container->register('bar')->asAliasOf('foo'); $this->assertSame('FOO', $this->_container->lookup('bar')); } public function testAliasOfAliasCanBeSet() { $this->_container->register('foo')->asValue('FOO'); $this->_container->register('bar')->asAliasOf('foo'); $this->_container->register('zip')->asAliasOf('bar'); $this->_container->register('button')->asAliasOf('zip'); $this->assertSame('FOO', $this->_container->lookup('button')); } } __halt_compiler();----SIGNATURE:----BsyioAaz0AIElVK6RqzfB9OTsUcduCadWPQmhjA3MHpuwWfPNvCYTsWz6tjk7VuqdiqAIeWEo2Qb7ZKId7j5aMvZJXDl5i9wkF+AEsHslAZhlewj3wpJXcWZaXFnDzaYjGZlAsdCIrFeLs1ejtiTsDRPpQJ7WtY73/cXq+IdVJoRZexsz72oZLyrO3sbXZ4GubXBtGb/kHTXp6WlbiX8IX/DN+xggVcrvFCWYdhLeSPXedXQZR/P/MoSUCxjY7siPln6zBqk4WUKN3oDMBNkH8O8xlndmWo6fc/YvzUQxgnOWMRDaPBpXZdCJEZ1NOA1RrHcWiN3C3ShzddYzxvAngJvWfIxhA+PBNsWLKBNiTYtD+R0iohzUMFVn9OZ56lDNZ++htVhxtq5JbyVj2iuY1S7NB3Bx2CVwZ6EJxkxz+vlBe3zLqRTHu5k3rVI+nEM2/DgUWebSBfa/d5+qKRy8D0OKchXAQcXLsePLUKO351GnPpxHqj19kO0vb/5j1GWXZWDxXDmPA7eu1PIgU5ksU0WdAD6s1CJUDGz6awVZQWoiuM2TJ2KzrjXPubhfsbY5yuoXDPz91X6T0VlOJCZHhwT7A54+H3mmvRYgMXp8LvAImgJkqUiI4k8mZPL4d3ogmS1mWXfzcov2Gx0ZsVt7tT+HBRsnC0BxE8WhmBUBG8=----ATTACHMENT:----ODMyMjY2MDkwNzc1MjgxNCA2Mzk1OTc0MDA0MDc4NzMyIDgyMjkwODMxOTYwMzQ2NDg=