You are here

public function IntegrationTests::testConfig in Lightweight Directory Access Protocol (LDAP) 8.3

Test module installation via configuration.

File

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

Class

IntegrationTests
Integration tests for ldap_user.

Namespace

Drupal\Tests\ldap_user\Kernel

Code

public function testConfig() {
  $value = $this->configFactory
    ->get('ldap_user.settings')
    ->get('orphanedAccountCheckInterval');
  $this
    ->assertEquals('weekly', $value);
}