You are here

protected function ViewsAggregatorStyleTableUnitTest::setUp in Views Aggregator Plus 8

Parameters

bool $import_test_views: Should the views specified on the test class be imported. If you need to setup some additional stuff, like fields, you need to call false and then call createTestViews for your own.

Overrides ViewsKernelTestBase::setUp

File

tests/src/Kernel/Plugin/ViewsAggregatorStyleTableUnitTest.php, line 46

Class

ViewsAggregatorStyleTableUnitTest
Tests the Views Aggregator table style plugin.

Namespace

Drupal\Tests\views_aggregator\Kernel\Plugin

Code

protected function setUp($import_test_views = TRUE) {
  parent::setUp($import_test_views);
  ViewTestData::createTestViews(get_class($this), [
    'views_aggregator_test_config',
  ]);
}