public function NativeSessionStorageTest::testDefaultSessionCacheLimiter

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Storage/NativeSessionStorageTest.php, line 90

Class

NativeSessionStorageTest
Test class for NativeSessionStorage.

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Storage

Code

public function testDefaultSessionCacheLimiter() {
  ini_set('session.cache_limiter', 'nocache');
  $storage = new NativeSessionStorage();
  $this
    ->assertEquals('', ini_get('session.cache_limiter'));
}