function InspectorTest::testAssertAllStrictArrays

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

Tests asserting all members are strict arrays.

@legacy-covers ::assertAllStrictArrays

File

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

Class

InspectorTest
Tests Drupal\Component\Assertion\Inspector.

Namespace

Drupal\Tests\Component\Assertion

Code

public function testAssertAllStrictArrays() : void {
  $this->assertTrue(Inspector::assertAllStrictArrays([]));
  $this->assertTrue(Inspector::assertAllStrictArrays([
    [],
    [],
  ]));
  $this->assertFalse(Inspector::assertAllStrictArrays([
    [
      'foo' => 'bar',
      'bar' => 'foo',
    ],
  ]));
}

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