_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());
 }