function InspectorTest::testAssertAllArrays

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Component/Assertion/InspectorTest.php \Drupal\Tests\Component\Assertion\InspectorTest::testAssertAllArrays()
  2. 8.9.x core/tests/Drupal/Tests/Component/Assertion/InspectorTest.php \Drupal\Tests\Component\Assertion\InspectorTest::testAssertAllArrays()
  3. 11.x 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 87

Class

InspectorTest
@coversDefaultClass \Drupal\Component\Assertion\Inspector[[api-linebreak]] @group Assertion

Namespace

Drupal\Tests\Component\Assertion

Code

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

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