function InspectorTest::testAllCallable

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

Tests asserting all members are callable.

@covers ::assertAllCallable

File

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

Class

InspectorTest
@coversDefaultClass \Drupal\Component\Assertion\Inspector[[api-linebreak]] @group Assertion

Namespace

Drupal\Tests\Component\Assertion

Code

public function testAllCallable() : void {
  $this->assertTrue(Inspector::assertAllCallable([
    'strchr',
    [
      $this,
      'callMe',
    ],
    [
      __CLASS__,
      'callMeStatic',
    ],
    function () {
      return TRUE;
    },
  ]));
  $this->assertFalse(Inspector::assertAllCallable([
    'strchr',
    [
      $this,
      'callMe',
    ],
    [
      __CLASS__,
      'callMeStatic',
    ],
    function () {
      return TRUE;
    },
    "I'm not callable",
  ]));
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.