public function OtherEventVariablesTest::testViewTableEvent in Hook Event Dispatcher 8.2
Same name and namespace in other branches
- 3.x modules/preprocess_event_dispatcher/tests/src/Unit/OtherEventVariablesTest.php \Drupal\Tests\preprocess_event_dispatcher\Unit\OtherEventVariablesTest::testViewTableEvent()
Test a ViewTablePreprocessEvent.
File
- modules/
preprocess_event_dispatcher/ tests/ src/ Unit/ OtherEventVariablesTest.php, line 217
Class
- OtherEventVariablesTest
- Class OtherEventVariablesTest.
Namespace
Drupal\Tests\preprocess_event_dispatcher\UnitCode
public function testViewTableEvent() : void {
$variablesArray = $this
->createVariablesArray();
$rows = Mockery::mock(ResultRow::class);
$variablesArray['rows'] = $rows;
$view = Mockery::mock(ViewExecutable::class);
$variablesArray['view'] = $view;
/** @var \Drupal\preprocess_event_dispatcher\Variables\ViewTableEventVariables $variables */
$variables = $this
->getVariablesFromCreatedEvent(ViewTablePreprocessEvent::class, $variablesArray);
self::assertInstanceOf(ViewTableEventVariables::class, $variables);
$this
->assertAbstractEventVariables($variables);
self::assertSame($rows, $variables
->getRows());
self::assertSame($view, $variables
->getView());
}