FalseExpectation::test PHP Метод

test() публичный Метод

Tests the expectation.
public test ( mixed $compare ) : boolean
$compare mixed Should be false.
Результат boolean True on match.
    public function test($compare)
    {
        return !(bool) $compare;
    }
FalseExpectation