From 0dd0de1eb369b9a94baf5c39dee7a7ec8d0f51b1 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 25 Jul 2021 04:44:23 +0000 Subject: [PATCH] Init class --- tests/src/App/RouterTest.php | 2 ++ 1 file changed, 2 insertions(+) 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()