コード例 #1
0
 /**
  * @return $this
  */
 public function between($minimum, $maximum)
 {
     $this->expectation->between($minimum, $maximum);
     return $this;
 }
コード例 #2
0
 public function testThatBetweenWorks()
 {
     $this->expectation->shouldReceive('between')->with(7, 23)->once();
     $this->function->between(7, 23);
 }