You are here

public function DazzlerTest::testAddDefaultThemeProperties in Formdazzle! 2.x

@covers ::addDefaultThemeProperties

@dataProvider providerAddDefaultThemeProperties

File

tests/src/Unit/DazzlerTest.php, line 482

Class

DazzlerTest
@coversDefaultClass \Drupal\formdazzle\Dazzler @group formdazzle

Namespace

Drupal\Tests\formdazzle\Unit

Code

public function testAddDefaultThemeProperties(array $element, array $expected) {
  Dazzler::addDefaultThemeProperties($element);
  $this
    ->assertEquals($expected, $element, $this
    ->getTestMessage());
}