<?php/* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */namespaceSymfony\Component\HttpFoundation\Tests\Session\Storage\Handler;useSymfony\Component\HttpFoundation\Session\Storage\Handler\NativeSessionHandler;/** * Test class for NativeSessionHandler. * * @author Drak <drak@zikula.org> * * @runTestsInSeparateProcesses * @preserveGlobalState disabled */classNativeSessionHandlerTestextends\PHPUnit_Framework_TestCase{publicfunctiontestConstruct(){$handler=newNativeSessionHandler();$this->assertTrue($handlerinstanceof\SessionHandler);$this->assertTrue($handlerinstanceofNativeSessionHandler);}}