From 06895ef8cc3c227aec4e59a3bfca87430fd55c75 Mon Sep 17 00:00:00 2001 From: Robin Windey Date: Mon, 12 Oct 2020 14:19:41 +0200 Subject: Fix typo 'shared' --- .../AppFramework/Bootstrap/RegistrationContextTest.php | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) (limited to 'tests') diff --git a/tests/lib/AppFramework/Bootstrap/RegistrationContextTest.php b/tests/lib/AppFramework/Bootstrap/RegistrationContextTest.php index 8441b6e983d..8e88db6f19a 100644 --- a/tests/lib/AppFramework/Bootstrap/RegistrationContextTest.php +++ b/tests/lib/AppFramework/Bootstrap/RegistrationContextTest.php @@ -83,7 +83,10 @@ class RegistrationContextTest extends TestCase { $this->context->delegateEventListenerRegistrations($dispatcher); } - public function testRegisterService(): void { + /** + * @dataProvider dataProvider_TrueFalse + */ + public function testRegisterService(bool $shared): void { $app = $this->createMock(App::class); $service = 'abc'; $factory = function () { @@ -94,11 +97,11 @@ class RegistrationContextTest extends TestCase { ->willReturn($container); $container->expects($this->once()) ->method('registerService') - ->with($service, $factory, true); + ->with($service, $factory, $shared); $this->logger->expects($this->never()) ->method('logException'); - $this->context->for('myapp')->registerService($service, $factory); + $this->context->for('myapp')->registerService($service, $factory, $shared); $this->context->delegateContainerRegistrations([ 'myapp' => $app, ]); @@ -159,4 +162,11 @@ class RegistrationContextTest extends TestCase { 'myapp' => $app, ]); } + + public function dataProvider_TrueFalse(){ + return[ + [true], + [false] + ]; + } } -- cgit v1.2.3