You are here

public function Framework_ConstraintTest::testConstraintStringMatches in Zircon Profile 8

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

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

File

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

Class

Framework_ConstraintTest
@since Class available since Release 3.0.0

Code

public function testConstraintStringMatches() {
  $constraint = PHPUnit_Framework_Assert::matches('*%c*');
  $this
    ->assertFalse($constraint
    ->evaluate('**', '', true));
  $this
    ->assertTrue($constraint
    ->evaluate('***', '', true));
  $this
    ->assertEquals('matches PCRE pattern "/^\\*.\\*$/s"', $constraint
    ->toString());
  $this
    ->assertEquals(1, count($constraint));
}