123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace Drupal\FunctionalTests;
- use Drupal\Tests\BrowserTestBase;
- class FolderTest extends BrowserTestBase {
-
- public static $modules = ['image'];
-
- protected $defaultTheme = 'stark';
- public function testFolderSetup() {
- $directory = 'public://styles';
- $this->assertTrue(\Drupal::service('file_system')->prepareDirectory($directory, FALSE), 'Directory created.');
- }
- }
|