Coduo\PHPMatcher\Tests\Matcher\NullMatcherTest::negativeMatchDescription PHP Method

negativeMatchDescription() public static method

public static negativeMatchDescription ( )
    public static function negativeMatchDescription()
    {
        return array(array("test", "@boolean@", "string \"test\" does not match null."), array(new \stdClass(), "@string@", "object \"\\stdClass\" does not match null."), array(1.1, "@integer@", "double \"1.1\" does not match null."), array(false, "@double@", "boolean \"false\" does not match null."), array(1, "@array@", "integer \"1\" does not match null."));
    }