function InspectorTest::testAssertAllObjects
Same name in other branches
- 8.9.x core/tests/Drupal/Tests/Component/Assertion/InspectorTest.php \Drupal\Tests\Component\Assertion\InspectorTest::testAssertAllObjects()
- 10 core/tests/Drupal/Tests/Component/Assertion/InspectorTest.php \Drupal\Tests\Component\Assertion\InspectorTest::testAssertAllObjects()
- 11.x core/tests/Drupal/Tests/Component/Assertion/InspectorTest.php \Drupal\Tests\Component\Assertion\InspectorTest::testAssertAllObjects()
Tests asserting all members are objects.
@covers ::assertAllObjects
File
-
core/
tests/ Drupal/ Tests/ Component/ Assertion/ InspectorTest.php, line 229
Class
- InspectorTest
- @coversDefaultClass \Drupal\Component\Assertion\Inspector @group Assertion
Namespace
Drupal\Tests\Component\AssertionCode
public function testAssertAllObjects() {
$this->assertTrue(Inspector::assertAllObjects([
new \ArrayObject(),
new \ArrayObject(),
]));
$this->assertFalse(Inspector::assertAllObjects([
new \ArrayObject(),
new \ArrayObject(),
'foo',
]));
$this->assertTrue(Inspector::assertAllObjects([
new \ArrayObject(),
new \ArrayObject(),
], '\\Traversable'));
$this->assertFalse(Inspector::assertAllObjects([
new \ArrayObject(),
new \ArrayObject(),
'foo',
], '\\Traversable'));
$this->assertFalse(Inspector::assertAllObjects([
new \ArrayObject(),
new StringObject(),
], '\\Traversable'));
$this->assertTrue(Inspector::assertAllObjects([
new \ArrayObject(),
new StringObject(),
], '\\Traversable', '\\Drupal\\Tests\\Component\\Assertion\\StringObject'));
$this->assertFalse(Inspector::assertAllObjects([
new \ArrayObject(),
new StringObject(),
new \stdClass(),
], '\\ArrayObject', '\\Drupal\\Tests\\Component\\Assertion\\StringObject'));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.