_and() 공개 메소드

Add another step of the same type as the step that was added before.
public _and ( array $arguments ) : PHPUnit_Extensions_Story_TestCase
$arguments array
리턴 PHPUnit_Extensions_Story_TestCase
예제 #1
0
 /**
  * Add another step of the same type as the step that was added before.
  *
  * @param  array $arguments
  * @return PHPUnit_Extensions_Story_TestCase
  */
 protected function _and($contextOrOutcome)
 {
     return $this->scenario->_and(func_get_args());
 }