PHPUnit_Framework_Assert::isNull PHP Method

isNull() public static method

Returns a PHPUnit_Framework_Constraint_IsNull matcher object.
public static isNull ( ) : PHPUnit_Framework_Constraint_IsNull
return PHPUnit_Framework_Constraint_IsNull
    public static function isNull()
    {
        return new PHPUnit_Framework_Constraint_IsNull();
    }

Usage Example

Example #1
0
/**
 * Returns a PHPUnit_Framework_Constraint_IsNull matcher object.
 *
 * @return PHPUnit_Framework_Constraint_IsNull
 * @since  Method available since Release 3.3.0
 */
function isNull()
{
    return PHPUnit_Framework_Assert::isNull();
}
All Usage Examples Of PHPUnit_Framework_Assert::isNull
PHPUnit_Framework_Assert