You are here

FolderTest.php in Drupal 9

Same filename and directory in other branches
  1. 8 core/tests/Drupal/FunctionalTests/FolderTest.php

File

core/tests/Drupal/FunctionalTests/FolderTest.php
View source
<?php

namespace Drupal\FunctionalTests;

use Drupal\Tests\BrowserTestBase;

/**
 * This test will check BrowserTestBase's treatment of hook_install during
 * setUp.
 * Image module is used for test.
 *
 * @group browsertestbase
 */
class FolderTest extends BrowserTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  protected static $modules = [
    'image',
  ];

  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';
  public function testFolderSetup() {
    $directory = 'public://styles';
    $this
      ->assertTrue(\Drupal::service('file_system')
      ->prepareDirectory($directory, FALSE), 'Directory created.');
  }

}

Classes

Namesort descending Description
FolderTest This test will check BrowserTestBase's treatment of hook_install during setUp. Image module is used for test.