pino-8.x-1.2-no-core/modules/member/tests/src/Functional/LoadTest.php

modules/member/tests/src/Functional/LoadTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
 
namespace Drupal\Tests\member\Functional;
 
use Drupal\Core\Url;
use Drupal\Tests\BrowserTestBase;
 
/**
 * Simple test to ensure that main page loads with module enabled.
 *
 * @group member
 */
class LoadTest extends BrowserTestBase {
 
  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = ['member'];
 
  /**
   * 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->assertSession()->statusCodeEquals(200);
  }
 
}

Главная | Обратная связь

drupal hosting | друпал хостинг | it patrol .inc