function InspectorTest::testAssertAllFloat

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

Tests asserting all members are floating point variables.

File

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

Class

InspectorTest
Tests Drupal\Component\Assertion\Inspector.

Namespace

Drupal\Tests\Component\Assertion

Code

public function testAssertAllFloat() : void {
  $this->assertTrue(Inspector::assertAllFloat([]));
  $this->assertTrue(Inspector::assertAllFloat([
    1.0,
    2.1,
    3.14,
  ]));
  $this->assertFalse(Inspector::assertAllFloat([
    1,
    2.1,
    3.14,
  ]));
  $this->assertFalse(Inspector::assertAllFloat([
    1.0,
    '2',
    3,
  ]));
  $this->assertFalse(Inspector::assertAllFloat([
    'Titanic',
  ]));
}

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