예제 #1
0
/**
 * Test if the value is truthy
 *
 * @param mixed  $actual
 * @param string $message
 * @throws AssertionError if the value is false, null, 0, '', '0', ...
 */
function test_flight_assert_true($actual, string $message = '')
{
    \Cundd\TestFlight\Assert::assertTrue($actual, $message);
}