class UserChangedTest

Same name and namespace in other branches
  1. 11.x core/modules/user/tests/src/Functional/Views/UserChangedTest.php \Drupal\Tests\user\Functional\Views\UserChangedTest
  2. 10 core/modules/user/tests/src/Functional/Views/UserChangedTest.php \Drupal\Tests\user\Functional\Views\UserChangedTest
  3. 8.9.x core/modules/user/tests/src/Functional/Views/UserChangedTest.php \Drupal\Tests\user\Functional\Views\UserChangedTest

Tests the changed field.

@group user

Hierarchy

Expanded class hierarchy of UserChangedTest

File

core/modules/user/tests/src/Functional/Views/UserChangedTest.php, line 12

Namespace

Drupal\Tests\user\Functional\Views
View source
class UserChangedTest extends ViewTestBase {
  
  /**
   * Modules to enable.
   *
   * @var array
   */
  protected static $modules = [
    'views_ui',
    'user_test_views',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';
  
  /**
   * Views used by this test.
   *
   * @var array
   */
  public static $testViews = [
    'test_user_changed',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected function setUp($import_test_views = TRUE, $modules = [
    'user_test_views',
  ]) : void {
    parent::setUp($import_test_views, $modules);
    $this->enableViewsTestModule();
  }
  
  /**
   * Tests changed field.
   */
  public function testChangedField() {
    $path = 'test_user_changed';
    $options = [];
    $this->drupalGet($path, $options);
    $this->assertSession()
      ->pageTextContains('Updated date: ' . date('Y-m-d', REQUEST_TIME));
  }

}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.