function InspectorTest::testAssertAllIntegers
Same name in other branches
- 8.9.x core/tests/Drupal/Tests/Component/Assertion/InspectorTest.php \Drupal\Tests\Component\Assertion\InspectorTest::testAssertAllIntegers()
- 10 core/tests/Drupal/Tests/Component/Assertion/InspectorTest.php \Drupal\Tests\Component\Assertion\InspectorTest::testAssertAllIntegers()
- 11.x core/tests/Drupal/Tests/Component/Assertion/InspectorTest.php \Drupal\Tests\Component\Assertion\InspectorTest::testAssertAllIntegers()
Tests asserting all members are integers.
@covers ::assertAllIntegers
File
-
core/
tests/ Drupal/ Tests/ Component/ Assertion/ InspectorTest.php, line 130
Class
- InspectorTest
- @coversDefaultClass \Drupal\Component\Assertion\Inspector @group Assertion
Namespace
Drupal\Tests\Component\AssertionCode
public function testAssertAllIntegers() {
$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.