public function NativeFileSessionHandlerTest::testConstructDefault

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/NativeFileSessionHandlerTest.php, line 72

Class

NativeFileSessionHandlerTest
Test class for NativeFileSessionHandler.

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Storage\Handler

Code

public function testConstructDefault() {
  $path = ini_get('session.save_path');
  $storage = new NativeSessionStorage(array(
    'name' => 'TESTING',
  ), new NativeFileSessionHandler());
  $this
    ->assertEquals($path, ini_get('session.save_path'));
}