protected function FileItemValidationTest::setUp in Drupal 8
Same name and namespace in other branches
- 9 core/modules/file/tests/src/Kernel/FileItemValidationTest.php \Drupal\Tests\file\Kernel\FileItemValidationTest::setUp()
Overrides KernelTestBase::setUp
File
- core/
modules/ file/ tests/ src/ Kernel/ FileItemValidationTest.php, line 42
Class
- FileItemValidationTest
- Tests that files referenced in file and image fields are always validated.
Namespace
Drupal\Tests\file\KernelCode
protected function setUp() {
parent::setUp();
$this
->installEntitySchema('entity_test');
$this
->installEntitySchema('user');
$this
->installEntitySchema('file');
$this
->installSchema('file', 'file_usage');
$this
->installSchema('system', 'sequences');
$this->user = User::create([
'name' => 'username',
'status' => 1,
]);
$this->user
->save();
$this->container
->get('current_user')
->setAccount($this->user);
}