function InspectorTest::testAssertAllMatch

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Component/Assertion/InspectorTest.php \Drupal\Tests\Component\Assertion\InspectorTest::testAssertAllMatch()
  2. 10 core/tests/Drupal/Tests/Component/Assertion/InspectorTest.php \Drupal\Tests\Component\Assertion\InspectorTest::testAssertAllMatch()
  3. 11.x core/tests/Drupal/Tests/Component/Assertion/InspectorTest.php \Drupal\Tests\Component\Assertion\InspectorTest::testAssertAllMatch()

Tests asserting strstr() or stristr() match.

@covers ::assertAllMatch

File

core/tests/Drupal/Tests/Component/Assertion/InspectorTest.php, line 201

Class

InspectorTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Component%21Assertion%21Inspector.php/class/Inspector/8.9.x" title="Generic inspections for the assert() statement." class="local">\Drupal\Component\Assertion\Inspector</a> @group Assertion

Namespace

Drupal\Tests\Component\Assertion

Code

public function testAssertAllMatch() {
    $this->assertTrue(Inspector::assertAllMatch('f', [
        'fee',
        'fi',
        'fo',
    ]));
    $this->assertTrue(Inspector::assertAllMatch('F', [
        'fee',
        'fi',
        'fo',
    ]));
    $this->assertTrue(Inspector::assertAllMatch('f', [
        'fee',
        'fi',
        'fo',
    ], TRUE));
    $this->assertFalse(Inspector::assertAllMatch('F', [
        'fee',
        'fi',
        'fo',
    ], TRUE));
    $this->assertFalse(Inspector::assertAllMatch('e', [
        'fee',
        'fi',
        'fo',
    ]));
    $this->assertFalse(Inspector::assertAllMatch('1', [
        12,
    ]));
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.