You are here

public function InspectorTest::testAssertAllMatch in Drupal 8

Same name and namespace in other branches
  1. 9 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
Contains \Drupal\Tests\Component\Assertion\InspectorTest.

Class

InspectorTest
@coversDefaultClass \Drupal\Component\Assertion\Inspector @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,
  ]));
}