Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / web / core / modules / simpletest / src / Tests / WebTestBaseInstallTest.php
1 <?php
2
3 namespace Drupal\simpletest\Tests;
4
5 use Drupal\simpletest\WebTestBase;
6
7 /**
8  * Tests the test-specifics customisations done in the installation.
9  *
10  * @group simpletest
11  */
12 class WebTestBaseInstallTest extends WebTestBase {
13
14   /**
15    * Tests the Drupal install done in \Drupal\simpletest\WebTestBase::setUp().
16    */
17   public function testInstall() {
18     $htaccess_filename = $this->getTempFilesDirectory() . '/.htaccess';
19     $this->assertTrue(file_exists($htaccess_filename), "$htaccess_filename exists");
20   }
21
22 }