Skip to content
Snippets Groups Projects
Commit 46916914 authored by Robin McCorkell's avatar Robin McCorkell
Browse files

Merge pull request #17993 from owncloud/simplecontainertest-fix

Fix incorrect test naming in SimpleContainerTest
parents 5699fff8 0223221a
No related branches found
No related tags found
No related merge requests found
...@@ -136,8 +136,7 @@ class SimpleContainerTest extends \Test\TestCase { ...@@ -136,8 +136,7 @@ class SimpleContainerTest extends \Test\TestCase {
} }
public function tesOverrideService() { public function testOverrideService() {
$this->container->registerParameter('test', 'abc');
$this->container->registerService( $this->container->registerService(
'Test\AppFramework\Utility\IInterfaceConstructor', function ($c) { 'Test\AppFramework\Utility\IInterfaceConstructor', function ($c) {
return $c->query('Test\AppFramework\Utility\ClassSimpleConstructor'); return $c->query('Test\AppFramework\Utility\ClassSimpleConstructor');
...@@ -147,10 +146,9 @@ class SimpleContainerTest extends \Test\TestCase { ...@@ -147,10 +146,9 @@ class SimpleContainerTest extends \Test\TestCase {
return $c->query('Test\AppFramework\Utility\ClassEmptyConstructor'); return $c->query('Test\AppFramework\Utility\ClassEmptyConstructor');
}); });
$object = $this->container->query( $object = $this->container->query(
'Test\AppFramework\Utility\ClassInterfaceConstructor' 'Test\AppFramework\Utility\IInterfaceConstructor'
); );
$this->assertTrue($object instanceof ClassEmptyConstructor); $this->assertTrue($object instanceof ClassEmptyConstructor);
$this->assertEquals('abc', $object->test);
} }
public function testRegisterAliasParamter() { public function testRegisterAliasParamter() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment