* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Behat\Behat\Tester\Result; /** * Represents an undefined step result. * * @author Konstantin Kudryashov */ final class UndefinedStepResult implements StepResult { /** * {@inheritdoc} */ public function isPassed() { return false; } /** * {@inheritdoc} */ public function getResultCode() { return self::UNDEFINED; } }