You are here

public function Framework_ConstraintTest::testConstraintSameSizeWithAnObjectImplementingCountable in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/tests/Framework/ConstraintTest.php \Framework_ConstraintTest::testConstraintSameSizeWithAnObjectImplementingCountable()

@covers PHPUnit_Framework_Constraint_SameSize

File

vendor/phpunit/phpunit/tests/Framework/ConstraintTest.php, line 3387

Class

Framework_ConstraintTest
@since Class available since Release 3.0.0

Code

public function testConstraintSameSizeWithAnObjectImplementingCountable() {
  $constraint = new PHPUnit_Framework_Constraint_SameSize(new ArrayObject(array(
    1,
    2,
    3,
    4,
    5,
  )));
  $this
    ->assertTrue($constraint
    ->evaluate(new ArrayObject(array(
    6,
    7,
    8,
    9,
    10,
  )), '', true));
  $this
    ->assertFalse($constraint
    ->evaluate(new ArrayObject(array(
    1,
    2,
    3,
    4,
  )), '', true));
}