You are here

class LoadTest in Web Service Data 2.0.x

Same name and namespace in other branches
  1. 8 src/Tests/LoadTest.php \Drupal\wsdata\Tests\LoadTest

Simple test to ensure that main page loads with module enabled.

@group wsdata

Hierarchy

  • class \Drupal\wsdata\Tests\LoadTest extends \Drupal\simpletest\WebTestBase

Expanded class hierarchy of LoadTest

File

src/Tests/LoadTest.php, line 13

Namespace

Drupal\wsdata\Tests
View source
class LoadTest extends WebTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = [
    'wsdata',
  ];

  /**
   * 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

Namesort descending Modifiers Type Description Overrides
LoadTest::$modules public static property Modules to enable.
LoadTest::$user protected property A user with permission to administer site configuration.
LoadTest::setUp protected function
LoadTest::testLoad public function Tests that the home page loads with a 200 response.