You are here

public function OtherEventVariablesTest::testHtmlEvent in Hook Event Dispatcher 8.2

Same name and namespace in other branches
  1. 3.x modules/preprocess_event_dispatcher/tests/src/Unit/OtherEventVariablesTest.php \Drupal\Tests\preprocess_event_dispatcher\Unit\OtherEventVariablesTest::testHtmlEvent()

Test a HtmlPreprocessEvent.

File

modules/preprocess_event_dispatcher/tests/src/Unit/OtherEventVariablesTest.php, line 134

Class

OtherEventVariablesTest
Class OtherEventVariablesTest.

Namespace

Drupal\Tests\preprocess_event_dispatcher\Unit

Code

public function testHtmlEvent() : void {
  $variablesArray = $this
    ->createVariablesArray();

  /** @var \Drupal\preprocess_event_dispatcher\Variables\HtmlEventVariables $variables */
  $variables = $this
    ->getVariablesFromCreatedEvent(HtmlPreprocessEvent::class, $variablesArray);
  self::assertInstanceOf(HtmlEventVariables::class, $variables);
  $this
    ->assertAbstractEventVariables($variables);
}