You are here

function assertNotEmpty in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertNotEmpty()

Asserts that a variable is not empty.

Parameters

mixed $actual:

string $message:

Throws

PHPUnit_Framework_AssertionFailedError

File

vendor/phpunit/phpunit/src/Framework/Assert/Functions.php, line 1003

Code

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