/** * @test(expectedFail=true) * @profile(fork) */ public function testAssertNotTrueFailed() { assertNotTrue(true); }
/** * @Then Assert the value :arg1 is not false * @param $condition */ public function assertNotFalse($condition) { assertNotTrue($condition, sprintf("Assert the value [%s] is not false", $condition)); }