public function IntegrationTest::testConfig in Lightweight Directory Access Protocol (LDAP) 8.4
Test module installation via configuration.
File
- ldap_user/
tests/ src/ Kernel/ IntegrationTest.php, line 48
Class
- IntegrationTest
- Integration tests for ldap_user.
Namespace
Drupal\Tests\ldap_user\KernelCode
public function testConfig() : void {
$value = $this->configFactory
->get('ldap_user.settings')
->get('orphanedAccountCheckInterval');
self::assertEquals('weekly', $value);
}