You are here

public function Framework_ConstraintTest::testConstraintStringMatches5 in Zircon Profile 8

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

@covers PHPUnit_Framework_Constraint_StringMatches @covers PHPUnit_Framework_Assert::matches @covers PHPUnit_Framework_Constraint::count

File

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

Class

Framework_ConstraintTest
@since Class available since Release 3.0.0

Code

public function testConstraintStringMatches5() {
  $constraint = PHPUnit_Framework_Assert::matches('*%x*');
  $this
    ->assertFalse($constraint
    ->evaluate('**', '', true));
  $this
    ->assertTrue($constraint
    ->evaluate('*0f0f0f*', '', true));
  $this
    ->assertEquals('matches PCRE pattern "/^\\*[0-9a-fA-F]+\\*$/s"', $constraint
    ->toString());
  $this
    ->assertEquals(1, count($constraint));
}