public static function PHPUnit_Framework_Assert::isFalse

Returns a PHPUnit_Framework_Constraint_IsFalse matcher object.

@since Method available since Release 3.3.0

Return value

PHPUnit_Framework_Constraint_IsFalse

4 calls to PHPUnit_Framework_Assert::isFalse()
Framework_Assert_FunctionsTest::testLogicalAnd in drupal/core/vendor/phpunit/phpunit/Tests/Framework/Assert/FunctionsTest.php
Framework_Assert_FunctionsTest::testLogicalOr in drupal/core/vendor/phpunit/phpunit/Tests/Framework/Assert/FunctionsTest.php
Framework_Assert_FunctionsTest::testLogicalXor in drupal/core/vendor/phpunit/phpunit/Tests/Framework/Assert/FunctionsTest.php
PHPUnit_Framework_Assert::assertFalse in drupal/core/vendor/phpunit/phpunit/PHPUnit/Framework/Assert.php
Asserts that a condition is false.

File

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

Class

PHPUnit_Framework_Assert
A set of assert methods.

Code

public static function isFalse() {
  return new PHPUnit_Framework_Constraint_IsFalse();
}