function assertAttributeGreaterThanOrEqual

Asserts that an attribute is greater than or equal to another value.

@since Method available since Release 3.1.0

Parameters

mixed $expected:

string $actualAttributeName:

string $actualClassOrObject:

string $message:

File

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

Code

function assertAttributeGreaterThanOrEqual($expected, $actualAttributeName, $actualClassOrObject, $message = '') {
  return call_user_func_array('PHPUnit_Framework_Assert::assertAttributeGreaterThanOrEqual', func_get_args());
}