public static function PHPUnit_Framework_Assert::anything in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Assert.php \PHPUnit_Framework_Assert::anything()
Returns a PHPUnit_Framework_Constraint_IsAnything matcher object.
@since Method available since Release 3.0.0
Return value
PHPUnit_Framework_Constraint_IsAnything
7 calls to PHPUnit_Framework_Assert::anything()
- Framework_AssertTest::testAssertThatAnything in vendor/
phpunit/ phpunit/ tests/ Framework/ AssertTest.php - @covers PHPUnit_Framework_Assert::assertThat @covers PHPUnit_Framework_Assert::anything
- Framework_AssertTest::testAssertThatAnythingAndAnything in vendor/
phpunit/ phpunit/ tests/ Framework/ AssertTest.php - @covers PHPUnit_Framework_Assert::assertThat @covers PHPUnit_Framework_Assert::anything @covers PHPUnit_Framework_Assert::logicalAnd
- Framework_AssertTest::testAssertThatAnythingOrAnything in vendor/
phpunit/ phpunit/ tests/ Framework/ AssertTest.php - @covers PHPUnit_Framework_Assert::assertThat @covers PHPUnit_Framework_Assert::anything @covers PHPUnit_Framework_Assert::logicalOr
- Framework_AssertTest::testAssertThatAnythingXorNotAnything in vendor/
phpunit/ phpunit/ tests/ Framework/ AssertTest.php - @covers PHPUnit_Framework_Assert::assertThat @covers PHPUnit_Framework_Assert::anything @covers PHPUnit_Framework_Assert::logicalNot @covers PHPUnit_Framework_Assert::logicalXor
- Framework_ConstraintTest::testConstraintIsAnything in vendor/
phpunit/ phpunit/ tests/ Framework/ ConstraintTest.php - @covers PHPUnit_Framework_Constraint_IsAnything @covers PHPUnit_Framework_Assert::anything @covers PHPUnit_Framework_Constraint::count @covers PHPUnit_Framework_TestFailure::exceptionToString
File
- vendor/
phpunit/ phpunit/ src/ Framework/ Assert.php, line 2408
Class
- PHPUnit_Framework_Assert
- A set of assert methods.
Code
public static function anything() {
return new PHPUnit_Framework_Constraint_IsAnything();
}