function InspectorTest::testAssertAllStrictArrays

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

Tests asserting all members are strict arrays.

@covers ::assertAllStrictArrays

File

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

Class

InspectorTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Component%21Assertion%21Inspector.php/class/Inspector/9" title="Generic inspections for the assert() statement." class="local">\Drupal\Component\Assertion\Inspector</a> @group Assertion

Namespace

Drupal\Tests\Component\Assertion

Code

public function testAssertAllStrictArrays() {
    $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.