Example #1
0
 public function testFind()
 {
     $model = m::mock(Template::class);
     $model->shouldReceive('find')->with(1);
     $repository = new TemplateRepository($model);
     $repository->find(1);
 }