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->getUsername()]]); $this->assertRaw($this->account->getUsername()); $this->assertNoText('registry initialized', 'The registry was not initialized'); } }