function InspectorTest::testAssertAllRegularExpressionMatch
Same name in other branches
- 9 core/tests/Drupal/Tests/Component/Assertion/InspectorTest.php \Drupal\Tests\Component\Assertion\InspectorTest::testAssertAllRegularExpressionMatch()
- 8.9.x core/tests/Drupal/Tests/Component/Assertion/InspectorTest.php \Drupal\Tests\Component\Assertion\InspectorTest::testAssertAllRegularExpressionMatch()
- 11.x core/tests/Drupal/Tests/Component/Assertion/InspectorTest.php \Drupal\Tests\Component\Assertion\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 @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.