comparison core/modules/simpletest/src/Tests/WebTestBaseInstallTest.php @ 0:4c8ae668cc8c

Initial import (non-working)
author Chris Cannam
date Wed, 29 Nov 2017 16:09:58 +0000
parents
children af1871eacc83
comparison
equal deleted inserted replaced
-1:000000000000 0:4c8ae668cc8c
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 }