You are here

public function InspectorTest::testAllNotEmpty in Drupal 8

Same name and namespace in other branches
  1. 9 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 181
Contains \Drupal\Tests\Component\Assertion\InspectorTest.

Class

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

Namespace

Drupal\Tests\Component\Assertion

Code

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