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 233acef commit 90da122Copy full SHA for 90da122
tests/unit/HitCounterServiceTest.php
@@ -69,8 +69,11 @@ protected function setUp()
69
70
71
$hcr = Mockery::mock('\coderius\hitCounter\repositories\HitCounterRepository');
72
+ $hcr->expects()
73
+ ->save();
74
+
75
$rp = Mockery::mock('\coderius\hitCounter\entities\HitCounter');
- $hcr->shouldReceive('save')->with($rp)->once();
76
+ //$hcr->shouldReceive('save')->with($rp)->once();
77
//$hcr->save($rp);
78
$this->service = new HitCounterService($dd, $hcr);
79
}
0 commit comments