LoadTest.php in RegEx Field Validation 8
File
tests/src/Functional/LoadTest.php
View source
<?php
namespace Drupal\Tests\regex_field_validation\Functional;
use Drupal\Core\Url;
use Drupal\Tests\BrowserTestBase;
class LoadTest extends BrowserTestBase {
public static $modules = [
'regex_field_validation',
];
protected $user;
protected function setUp() {
parent::setUp();
$this->user = $this
->drupalCreateUser([
'administer site configuration',
]);
$this
->drupalLogin($this->user);
}
public function testLoad() {
$this
->drupalGet(Url::fromRoute('<front>'));
$this
->assertSession()
->statusCodeEquals(200);
}
}
Classes
Name |
Description |
LoadTest |
Simple test to ensure that main page loads with module enabled. |