function InspectorTest::testAssertAllObjects
Tests asserting all members are objects.
@covers ::assertAllObjects
      
    
File
- 
              core/
tests/ Drupal/ Tests/ Component/ Assertion/ InspectorTest.php, line 232  
Class
- InspectorTest
 - @coversDefaultClass \Drupal\Component\Assertion\Inspector[[api-linebreak]] @group Assertion
 
Namespace
Drupal\Tests\Component\AssertionCode
public function testAssertAllObjects() : void {
  $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.