You are here

public function IntegrationTest::setUp in Lightweight Directory Access Protocol (LDAP) 8.4

Setup of kernel tests.

Overrides KernelTestBase::setUp

File

ldap_user/tests/src/Kernel/IntegrationTest.php, line 39

Class

IntegrationTest
Integration tests for ldap_user.

Namespace

Drupal\Tests\ldap_user\Kernel

Code

public function setUp() : void {
  parent::setUp();
  $this
    ->installConfig([
    'ldap_user',
  ]);
  $this->configFactory = $this->container
    ->get('config.factory');
}