예제 #1
0
 public function fill(array $parameters)
 {
     return $this->generic->fill(parent::fill($parameters));
 }
예제 #2
0
 private function whenIExecuteThatActionWith($parameters)
 {
     $this->action->__call('executeWith', [Argument::any()])->will()->forwardTo(function ($object) {
         $this->instance = $object;
     });
     $this->uut->execute($parameters);
 }