<?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\Proxy;usePHPUnit\Framework\TestCase;useSymfony\Component\HttpFoundation\Session\Storage\Proxy\NativeProxy;/** * Test class for NativeProxy. * * @group legacy * * @author Drak <drak@zikula.org> */classNativeProxyTestextendsTestCase{publicfunctiontestIsWrapper(){$proxy=newNativeProxy();$this->assertFalse($proxy->isWrapper());}publicfunctiontestGetSaveHandlerName(){$name=ini_get('session.save_handler');$proxy=newNativeProxy();$this->assertEquals($name,$proxy->getSaveHandlerName());}}