RemoteFileSaveUploadTest.php

Same filename and directory in other branches
  1. 8.9.x core/modules/file/tests/src/Functional/RemoteFileSaveUploadTest.php
  2. 10 core/modules/file/tests/src/Functional/RemoteFileSaveUploadTest.php
  3. 11.x core/modules/file/tests/src/Functional/RemoteFileSaveUploadTest.php

Namespace

Drupal\Tests\file\Functional

File

core/modules/file/tests/src/Functional/RemoteFileSaveUploadTest.php

View source
<?php

namespace Drupal\Tests\file\Functional;


/**
 * Tests the file uploading functions.
 *
 * @group file
 */
class RemoteFileSaveUploadTest extends SaveUploadTest {
    
    /**
     * Modules to enable.
     *
     * @var array
     */
    protected static $modules = [
        'file_test',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected $defaultTheme = 'stark';
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        parent::setUp();
        $this->config('system.file')
            ->set('default_scheme', 'dummy-remote')
            ->save();
    }

}

Classes

Title Deprecated Summary
RemoteFileSaveUploadTest Tests the file uploading functions.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.