You are here

UserChangedTest.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/user/src/Tests/Views/UserChangedTest.php

File

core/modules/user/src/Tests/Views/UserChangedTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\user\Tests\Views\UserChangedTest.
 */
namespace Drupal\user\Tests\Views;

use Drupal\views\Tests\ViewTestBase;
use Drupal\views\Tests\ViewTestData;

/**
 * Tests the changed field.
 *
 * @group user
 */
class UserChangedTest extends ViewTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = array(
    'views_ui',
    'user_test_views',
  );

  /**
   * Views used by this test.
   *
   * @var array
   */
  public static $testViews = array(
    'test_user_changed',
  );
  protected function setUp() {
    parent::setUp();
    ViewTestData::createTestViews(get_class($this), array(
      'user_test_views',
    ));
    $this
      ->enableViewsTestModule();
  }

  /**
   * Tests changed field.
   */
  public function testChangedField() {
    $path = 'test_user_changed';
    $options = array();
    $this
      ->drupalGet($path, $options);
    $this
      ->assertText(t('Updated date') . ': ' . date('Y-m-d', REQUEST_TIME));
  }

}

Classes

Namesort descending Description
UserChangedTest Tests the changed field.