function InspectorTest::testAssertAllRegularExpressionMatch
Tests asserting regular expression match.
@covers ::assertAllRegularExpressionMatch
File
-
core/
tests/ Drupal/ Tests/ Component/ Assertion/ InspectorTest.php, line 218
Class
- InspectorTest
- @coversDefaultClass \Drupal\Component\Assertion\Inspector[[api-linebreak]] @group Assertion
Namespace
Drupal\Tests\Component\AssertionCode
public function testAssertAllRegularExpressionMatch() : void {
$this->assertTrue(Inspector::assertAllRegularExpressionMatch('/f/i', [
'fee',
'fi',
'fo',
]));
$this->assertTrue(Inspector::assertAllRegularExpressionMatch('/F/i', [
'fee',
'fi',
'fo',
]));
$this->assertTrue(Inspector::assertAllRegularExpressionMatch('/f/', [
'fee',
'fi',
'fo',
]));
$this->assertFalse(Inspector::assertAllRegularExpressionMatch('/F/', [
'fee',
'fi',
'fo',
]));
$this->assertFalse(Inspector::assertAllRegularExpressionMatch('/e/', [
'fee',
'fi',
'fo',
]));
$this->assertFalse(Inspector::assertAllRegularExpressionMatch('/1/', [
12,
]));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.