FastTest.php
Same filename in other branches
Namespace
Drupal\Tests\system\Functional\ThemeFile
-
core/
modules/ system/ tests/ src/ Functional/ Theme/ FastTest.php
View source
<?php
namespace Drupal\Tests\system\Functional\Theme;
use Drupal\Tests\BrowserTestBase;
/**
* Tests autocompletion not loading registry.
*
* @group Theme
*/
class FastTest extends BrowserTestBase {
/**
* Modules to enable.
*
* @var array
*/
protected static $modules = [
'theme_test',
];
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* User allowed to access use profiles.
*
* @var \Drupal\user\Entity\User
*/
protected $account;
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
$this->account = $this->drupalCreateUser([
'access user profiles',
]);
}
/**
* Tests access to user autocompletion and verify the correct results.
*/
public function testUserAutocomplete() {
$this->drupalLogin($this->account);
$this->drupalGet('user/autocomplete', [
'query' => [
'q' => $this->account
->getAccountName(),
],
]);
$this->assertSession()
->responseContains($this->account
->getAccountName());
$this->assertSession()
->pageTextNotContains('registry initialized');
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
FastTest | Tests autocompletion not loading registry. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.