Init class

This commit is contained in:
Michael 2021-07-25 04:44:23 +00:00
parent 4b5eb055c8
commit 0dd0de1eb3
1 changed files with 2 additions and 0 deletions

View File

@ -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()