class NativeProxyTest in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-foundation/Tests/Session/Storage/Proxy/NativeProxyTest.php \Symfony\Component\HttpFoundation\Tests\Session\Storage\Proxy\NativeProxyTest
Test class for NativeProxy.
@author Drak <drak@zikula.org>
Hierarchy
- class \Symfony\Component\HttpFoundation\Tests\Session\Storage\Proxy\NativeProxyTest extends \Symfony\Component\HttpFoundation\Tests\Session\Storage\Proxy\PHPUnit_Framework_TestCase
Expanded class hierarchy of NativeProxyTest
File
- vendor/
symfony/ http-foundation/ Tests/ Session/ Storage/ Proxy/ NativeProxyTest.php, line 21
Namespace
Symfony\Component\HttpFoundation\Tests\Session\Storage\ProxyView source
class NativeProxyTest extends \PHPUnit_Framework_TestCase {
public function testIsWrapper() {
$proxy = new NativeProxy();
$this
->assertFalse($proxy
->isWrapper());
}
public function testGetSaveHandlerName() {
$name = ini_get('session.save_handler');
$proxy = new NativeProxy();
$this
->assertEquals($name, $proxy
->getSaveHandlerName());
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
NativeProxyTest:: |
public | function | ||
NativeProxyTest:: |
public | function |