protected function NidArgumentTest::setUp in Drupal 8
Same name and namespace in other branches
- 9 core/modules/node/tests/src/Kernel/Views/NidArgumentTest.php \Drupal\Tests\node\Kernel\Views\NidArgumentTest::setUp()
- 10 core/modules/node/tests/src/Kernel/Views/NidArgumentTest.php \Drupal\Tests\node\Kernel\Views\NidArgumentTest::setUp()
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
- core/
modules/ node/ tests/ src/ Kernel/ Views/ NidArgumentTest.php, line 40
Class
- NidArgumentTest
- Tests the nid argument handler.
Namespace
Drupal\Tests\node\Kernel\ViewsCode
protected function setUp($import_test_views = TRUE) {
parent::setUp($import_test_views);
$this
->installEntitySchema('node');
$this
->installEntitySchema('user');
$this
->installConfig([
'node',
'field',
]);
ViewTestData::createTestViews(get_class($this), [
'node_test_views',
]);
}