function assertAttributeNotEmpty

Asserts that a static attribute of a class or an attribute of an object is not empty.

@since Method available since Release 3.5.0

Parameters

string $haystackAttributeName:

mixed $haystackClassOrObject:

string $message:

File

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

Code

function assertAttributeNotEmpty($haystackAttributeName, $haystackClassOrObject, $message = '') {
  return call_user_func_array('PHPUnit_Framework_Assert::assertAttributeNotEmpty', func_get_args());
}