You are here

public static function PHPUnit_Framework_Assert::isFalse in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Framework/Assert.php \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

3 calls to PHPUnit_Framework_Assert::isFalse()
Framework_AssertTest::testAssertThatIsFalse in vendor/phpunit/phpunit/tests/Framework/AssertTest.php
@covers PHPUnit_Framework_Assert::assertThat @covers PHPUnit_Framework_Assert::isFalse
PHPUnit_Framework_Assert::assertFalse in vendor/phpunit/phpunit/src/Framework/Assert.php
Asserts that a condition is false.
PHPUnit_Framework_Assert::assertNotFalse in vendor/phpunit/phpunit/src/Framework/Assert.php
Asserts that a condition is not false.

File

vendor/phpunit/phpunit/src/Framework/Assert.php, line 2441

Class

PHPUnit_Framework_Assert
A set of assert methods.

Code

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