protected function OtherInstallationProfileTestsTest::setUp in Drupal 8
Overrides BrowserTestBase::setUp
File
- core/modules/ simpletest/ tests/ src/ Functional/ OtherInstallationProfileTestsTest.php, line 48 
Class
- OtherInstallationProfileTestsTest
- Verifies that tests in other installation profiles are found.
Namespace
Drupal\Tests\simpletest\FunctionalCode
protected function setUp() {
  parent::setUp();
  $this->adminUser = $this
    ->drupalCreateUser([
    'administer unit tests',
  ]);
  $this
    ->drupalLogin($this->adminUser);
}