function InspectorTest::testAssertAllObjects

Same name and namespace in other branches
  1. 8.9.x core/tests/Drupal/Tests/Component/Assertion/InspectorTest.php \Drupal\Tests\Component\Assertion\InspectorTest::testAssertAllObjects()
  2. 10 core/tests/Drupal/Tests/Component/Assertion/InspectorTest.php \Drupal\Tests\Component\Assertion\InspectorTest::testAssertAllObjects()
  3. 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\Assertion

Code

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.