From: Michael Date: Sun, 25 Jul 2021 04:44:23 +0000 (+0000) Subject: Init class X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=0dd0de1eb369b9a94baf5c39dee7a7ec8d0f51b1;p=friendica.git Init class --- diff --git a/tests/src/App/RouterTest.php b/tests/src/App/RouterTest.php index a3e8b026bf..8317702cdf 100644 --- a/tests/src/App/RouterTest.php +++ b/tests/src/App/RouterTest.php @@ -55,6 +55,8 @@ class RouterTest extends TestCase $this->cache = Mockery::mock(ICache::class); $this->cache->shouldReceive('get')->andReturn(null); $this->cache->shouldReceive('set')->andReturn(false); + + $this->lock = Mockery::mock(ILock::class); } public function testGetModuleClass()