You are here

public function ElementTest::testIsEmpty in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Render/ElementTest.php \Drupal\Tests\Core\Render\ElementTest::testIsEmpty()

@covers ::isEmpty

@dataProvider providerTestIsEmpty

File

core/tests/Drupal/Tests/Core/Render/ElementTest.php, line 185

Class

ElementTest
@coversDefaultClass \Drupal\Core\Render\Element @group Render

Namespace

Drupal\Tests\Core\Render

Code

public function testIsEmpty(array $element, $expected) {
  $this
    ->assertSame(Element::isEmpty($element), $expected);
}