LoadTest.php in Media Library Edit 8
File
tests/src/Functional/LoadTest.php
View source
<?php
namespace Drupal\Tests\media_library_edit\Functional;
use Drupal\Core\Url;
use Drupal\Tests\BrowserTestBase;
class LoadTest extends BrowserTestBase {
public static $modules = [
'media_library_edit',
];
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. |