public static function PHPUnit_Framework_Assert::assertNull

Asserts that a variable is NULL.

Parameters

mixed $actual:

string $message:

8 calls to PHPUnit_Framework_Assert::assertNull()

File

drupal/core/vendor/phpunit/phpunit/PHPUnit/Framework/Assert.php, line 920

Class

PHPUnit_Framework_Assert
A set of assert methods.

Code

public static function assertNull($actual, $message = '') {
  self::assertThat($actual, self::isNull(), $message);
}