]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix typo 'shared'
authorRobin Windey <ro.windey@gmail.com>
Mon, 12 Oct 2020 12:19:41 +0000 (14:19 +0200)
committerRobin Windey <ro.windey@gmail.com>
Mon, 12 Oct 2020 12:19:41 +0000 (14:19 +0200)
lib/private/AppFramework/Bootstrap/RegistrationContext.php
tests/lib/AppFramework/Bootstrap/RegistrationContextTest.php

index 0f408380e8824e0cb44910a9f9012262666e549e..023590596e3506916ff4f3f659fde06161079240 100644 (file)
@@ -203,7 +203,7 @@ class RegistrationContext {
                        "appId" => $appId,
                        "name" => $name,
                        "factory" => $factory,
-                       "sharred" => $shared,
+                       "shared" => $shared,
                ];
        }
 
index 8441b6e983d8aa8a66d7b47647ab99608ffba6d6..8e88db6f19a864543837f39efa0d123036b73484 100644 (file)
@@ -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]
+               ];
+       }
 }