function InspectorTest::testAllNotEmpty

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

Tests asserting all members are !empty().

@covers ::assertAllNotEmpty

File

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

Class

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

Namespace

Drupal\Tests\Component\Assertion

Code

public function testAllNotEmpty() : void {
  $this->assertTrue(Inspector::assertAllNotEmpty([
    1,
    'two',
  ]));
  $this->assertFalse(Inspector::assertAllNotEmpty([
    '',
  ]));
}

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