class LoadTest in Admin Menu Swap 7.2
Same name and namespace in other branches
- 8 src/Tests/LoadTest.php \Drupal\amswap\Tests\LoadTest
Simple test to ensure that main page loads with module enabled.
@group amswap
Hierarchy
- class \Drupal\amswap\Tests\LoadTest extends \Drupal\simpletest\WebTestBase
Expanded class hierarchy of LoadTest
File
- src/
Tests/ LoadTest.php, line 13
Namespace
Drupal\amswap\TestsView source
class LoadTest extends WebTestBase {
/**
* Modules to enable.
*
* @var array
*/
public static $modules = [
'amswap',
];
/**
* A user with permission to administer site configuration.
*
* @var \Drupal\user\UserInterface
*/
protected $user;
/**
* {@inheritdoc}
*/
protected function setUp() {
parent::setUp();
$this->user = $this
->drupalCreateUser([
'administer site configuration',
]);
$this
->drupalLogin($this->user);
}
/**
* Tests that the home page loads with a 200 response.
*/
public function testLoad() {
$this
->drupalGet(Url::fromRoute('<front>'));
$this
->assertResponse(200);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
LoadTest:: |
public static | property | Modules to enable. | |
LoadTest:: |
protected | property | A user with permission to administer site configuration. | |
LoadTest:: |
protected | function | ||
LoadTest:: |
public | function | Tests that the home page loads with a 200 response. |