public static function PHPUnit_Framework_Assert::assertGreaterThanOrEqual

Asserts that a value is greater than or equal to another value.

@since Method available since Release 3.1.0

Parameters

mixed $expected:

mixed $actual:

string $message:

2 calls to PHPUnit_Framework_Assert::assertGreaterThanOrEqual()
Framework_AssertTest::testGreaterThanOrEqual in drupal/core/vendor/phpunit/phpunit/Tests/Framework/AssertTest.php
@covers PHPUnit_Framework_Assert::assertGreaterThanOrEqual
PHPUnit_Framework_Assert::assertAttributeGreaterThanOrEqual in drupal/core/vendor/phpunit/phpunit/PHPUnit/Framework/Assert.php
Asserts that an attribute is greater than or equal to another value.

File

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

Class

PHPUnit_Framework_Assert
A set of assert methods.

Code

public static function assertGreaterThanOrEqual($expected, $actual, $message = '') {
  self::assertThat($actual, self::greaterThanOrEqual($expected), $message);
}