You are here

public function InspectorTest::testAssertAllArrays in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Component/Assertion/InspectorTest.php \Drupal\Tests\Component\Assertion\InspectorTest::testAssertAllArrays()

Tests asserting all members are arrays.

@covers ::assertAllArrays

File

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

Class

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

Namespace

Drupal\Tests\Component\Assertion

Code

public function testAssertAllArrays() {
  $this
    ->assertTrue(Inspector::assertAllArrays([]));
  $this
    ->assertTrue(Inspector::assertAllArrays([
    [],
    [],
  ]));
  $this
    ->assertFalse(Inspector::assertAllArrays([
    [],
    'foo',
  ]));
}