You are here

public function BaseTest::testCheckDefaultValue in TMGMT Extension Suite 8.2

File

tests/src/Kernel/BaseTest.php, line 78

Class

BaseTest
TMGMT Extension Suit kernel test base class.

Namespace

Drupal\Tests\tmgmt_extension_suit\Kernel

Code

public function testCheckDefaultValue() {
  $three_hours_in_seconds = 3600 * 3;
  $this
    ->assertEquals(\Drupal::config('tmgmt_extension_suit.settings')
    ->get('interval'), $three_hours_in_seconds);
}