We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 069a09e commit 7e60eccCopy full SHA for 7e60ecc
tests/unit/HitCounterServiceTest.php
@@ -49,6 +49,8 @@ protected function setUp()
49
50
$dd = Mockery::mock('\coderius\hitCounter\components\deviceDetect\DeviceDetector');
51
$hcr = Mockery::mock('coderius\hitCounter\repositories\HitCounterRepository');
52
+ ->shouldReceive('save')
53
+ ->once();
54
$hcr->method('save');
55
56
$this->service = new HitCounterService($dd, $hcr);
0 commit comments