public function InspectorTest::testAssertAllArrays in Drupal 9
Same name and namespace in other branches
- 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 84 - Contains \Drupal\Tests\Component\Assertion\InspectorTest.
Class
- InspectorTest
- @coversDefaultClass \Drupal\Component\Assertion\Inspector @group Assertion
Namespace
Drupal\Tests\Component\AssertionCode
public function testAssertAllArrays() {
$this
->assertTrue(Inspector::assertAllArrays([]));
$this
->assertTrue(Inspector::assertAllArrays([
[],
[],
]));
$this
->assertFalse(Inspector::assertAllArrays([
[],
'foo',
]));
}