function InspectorTest::testAssertAllNumeric

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

Tests asserting all arguments are numbers or strings castable to numbers.

@covers ::assertAllNumeric

File

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

Class

InspectorTest
@coversDefaultClass \Drupal\Component\Assertion\Inspector @group Assertion

Namespace

Drupal\Tests\Component\Assertion

Code

public function testAssertAllNumeric() : void {
    $this->assertTrue(Inspector::assertAllNumeric([
        1,
        '2',
        3.14,
    ]));
    $this->assertFalse(Inspector::assertAllNumeric([
        1,
        'two',
        3.14,
    ]));
}

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