function InspectorTest::testAssertAllIntegers

Tests asserting all members are integers.

@legacy-covers ::assertAllIntegers

File

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

Class

InspectorTest
Tests Drupal\Component\Assertion\Inspector.

Namespace

Drupal\Tests\Component\Assertion

Code

public function testAssertAllIntegers() : void {
  $this->assertTrue(Inspector::assertAllIntegers([]));
  $this->assertTrue(Inspector::assertAllIntegers([
    1,
    2,
    3,
  ]));
  $this->assertFalse(Inspector::assertAllIntegers([
    1,
    2,
    3.14,
  ]));
  $this->assertFalse(Inspector::assertAllIntegers([
    1,
    '2',
    3,
  ]));
}

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