You are here

public function UserServiceProviderFallbackTest::testUserServiceProvider in Drupal 8

Tests that user.tempstore.expire equals tempstore.expire if not customized.

File

core/modules/user/tests/src/Kernel/UserServiceProviderFallbackTest.php, line 26

Class

UserServiceProviderFallbackTest
Tests \Drupal\user\UserServiceProvider.

Namespace

Drupal\Tests\user\Kernel

Code

public function testUserServiceProvider() {
  $this
    ->assertEquals(1000, $this->container
    ->getParameter('user.tempstore.expire'));
}