You are here

public function InspectorTest::testAssertAllStrings 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::testAssertAllStrings()

Tests asserting all members are strings.

@covers ::assertAllStrings @dataProvider providerTestAssertAllStrings

File

core/tests/Drupal/Tests/Component/Assertion/InspectorTest.php, line 37
Contains \Drupal\Tests\Component\Assertion\InspectorTest.

Class

InspectorTest
@coversDefaultClass \Drupal\Component\Assertion\Inspector @group Assertion

Namespace

Drupal\Tests\Component\Assertion

Code

public function testAssertAllStrings($input, $expected) {
  $this
    ->assertSame($expected, Inspector::assertAllStrings($input));
}