public function Framework_ConstraintTest::testConstraintCountWithAnIteratorWhichDoesNotImplementCountable in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/tests/Framework/ConstraintTest.php \Framework_ConstraintTest::testConstraintCountWithAnIteratorWhichDoesNotImplementCountable()
@covers PHPUnit_Framework_Constraint_Count
File
- vendor/
phpunit/ phpunit/ tests/ Framework/ ConstraintTest.php, line 3287
Class
- Framework_ConstraintTest
- @since Class available since Release 3.0.0
Code
public function testConstraintCountWithAnIteratorWhichDoesNotImplementCountable() {
$constraint = new PHPUnit_Framework_Constraint_Count(5);
$this
->assertTrue($constraint
->evaluate(new TestIterator(array(
1,
2,
3,
4,
5,
)), '', true));
$this
->assertFalse($constraint
->evaluate(new TestIterator(array(
1,
2,
3,
4,
)), '', true));
}