function RelationshipUserFileDataTest::setUp
Same name and namespace in other branches
- 9 core/modules/file/tests/src/Kernel/Views/RelationshipUserFileDataTest.php \Drupal\Tests\file\Kernel\Views\RelationshipUserFileDataTest::setUp()
- 8.9.x core/modules/file/tests/src/Functional/Views/RelationshipUserFileDataTest.php \Drupal\Tests\file\Functional\Views\RelationshipUserFileDataTest::setUp()
- 11.x core/modules/file/tests/src/Kernel/Views/RelationshipUserFileDataTest.php \Drupal\Tests\file\Kernel\Views\RelationshipUserFileDataTest::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/ file/ tests/ src/ Kernel/ Views/ RelationshipUserFileDataTest.php, line 50
Class
- RelationshipUserFileDataTest
- Tests file on user relationship handler.
Namespace
Drupal\Tests\file\Kernel\ViewsCode
protected function setUp($import_test_views = TRUE) : void {
parent::setUp($import_test_views);
$this->installSchema('file', [
'file_usage',
]);
$this->installEntitySchema('user');
$this->installEntitySchema('file');
// Create the user profile field and instance.
FieldStorageConfig::create([
'entity_type' => 'user',
'field_name' => 'user_file',
'type' => 'file',
'translatable' => '0',
])->save();
FieldConfig::create([
'label' => 'User File',
'description' => '',
'field_name' => 'user_file',
'entity_type' => 'user',
'bundle' => 'user',
'required' => 0,
])->save();
ViewTestData::createTestViews(static::class, [
'file_test_views',
]);
$this->installConfig([
'field',
'file_test_views',
]);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.