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