You are here

public function YamlFormElementManagedFilePublicTest::setUp in YAML Form 8

Sets up a Drupal site for running functional and integration tests.

Installs Drupal with the installation profile specified in \Drupal\simpletest\WebTestBase::$profile into the prefixed database.

Afterwards, installs any additional modules specified in the static \Drupal\simpletest\WebTestBase::$modules property of each class in the class hierarchy.

After installation all caches are flushed and several configuration values are reset to the values of the parent site executing the test, since the default values may be incompatible with the environment in which tests are being executed.

Overrides YamlFormTestBase::setUp

File

src/Tests/YamlFormElementManagedFilePublicTest.php, line 24

Class

YamlFormElementManagedFilePublicTest
Test for form element managed public file handling (DRUPAL-PSA-2016-003).

Namespace

Drupal\yamlform\Tests

Code

public function setUp() {
  parent::setUp();

  // Set public file upload support for testing.
  $settings_config = \Drupal::configFactory()
    ->getEditable('yamlform.settings');
  $settings_config
    ->set('file.file_public', TRUE);
  $settings_config
    ->save();
}