function assertNull

Asserts that a variable is NULL.

Parameters

mixed $actual:

string $message:

1 string reference to 'assertNull'
UserValidationTest::testUsernames in drupal/core/modules/user/lib/Drupal/user/Tests/UserValidationTest.php

File

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

Code

function assertNull($actual, $message = '') {
  return call_user_func_array('PHPUnit_Framework_Assert::assertNull', func_get_args());
}