* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Behat\Testwork\Tester\Result\Interpretation; use Behat\Testwork\Tester\Result\TestResult; /** * Interprets test results softly - everything that is not an explicit failure is a pass. * * @author Konstantin Kudryashov */ final class SoftInterpretation implements ResultInterpretation { /** * {@inheritdoc} */ public function isFailure(TestResult $result) { return TestResult::FAILED <= $result->getResultCode(); } }