mirror of
https://github.com/e107inc/e107.git
synced 2025-10-15 15:04:25 +02:00
175 lines
1.7 KiB
PHP
175 lines
1.7 KiB
PHP
<?php
|
|
/**
|
|
* e107 website system
|
|
*
|
|
* Copyright (C) 2008-2018 e107 Inc (e107.org)
|
|
* Released under the terms and conditions of the
|
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
|
*
|
|
*/
|
|
|
|
|
|
class e_sessionTest extends \Codeception\Test\Unit
|
|
{
|
|
/*
|
|
public function testSetOption()
|
|
{
|
|
|
|
}
|
|
|
|
public function testGetOption()
|
|
{
|
|
|
|
}
|
|
|
|
public function testSetDefaultSystemConfig()
|
|
{
|
|
|
|
}
|
|
|
|
public function testGet()
|
|
{
|
|
|
|
}
|
|
|
|
public function testGetData()
|
|
{
|
|
|
|
}
|
|
|
|
public function testSet()
|
|
{
|
|
|
|
}
|
|
|
|
public function testSetData()
|
|
{
|
|
|
|
}
|
|
|
|
public function testIs()
|
|
{
|
|
|
|
}
|
|
|
|
public function testHas()
|
|
{
|
|
|
|
}
|
|
|
|
public function testHasData()
|
|
{
|
|
|
|
}
|
|
|
|
public function testClear()
|
|
{
|
|
|
|
}
|
|
|
|
public function testClearData()
|
|
{
|
|
|
|
}
|
|
|
|
public function testSetConfig()
|
|
{
|
|
|
|
}
|
|
|
|
public function testGetNamespaceKey()
|
|
{
|
|
|
|
}
|
|
|
|
public function testSetOptions()
|
|
{
|
|
|
|
}
|
|
|
|
public function testInit()
|
|
{
|
|
|
|
}
|
|
|
|
public function testStart()
|
|
{
|
|
|
|
}
|
|
|
|
public function testSetSessionId()
|
|
{
|
|
|
|
}
|
|
|
|
public function testGetSessionId()
|
|
{
|
|
|
|
}
|
|
|
|
public function testGetSaveMethod()
|
|
{
|
|
|
|
}
|
|
|
|
public function testSetSessionName()
|
|
{
|
|
|
|
}
|
|
|
|
public function testGetSessionName()
|
|
{
|
|
|
|
}
|
|
|
|
public function testValidateSessionCookie()
|
|
{
|
|
|
|
}
|
|
|
|
public function testCookieDelete()
|
|
{
|
|
|
|
}
|
|
|
|
public function testValidate()
|
|
{
|
|
|
|
}
|
|
|
|
public function testGetValidateData()
|
|
{
|
|
|
|
}
|
|
|
|
public function testGetFormToken()
|
|
{
|
|
|
|
}
|
|
|
|
public function testCheckFormToken()
|
|
{
|
|
|
|
}
|
|
|
|
public function testClose()
|
|
{
|
|
|
|
}
|
|
|
|
public function testEnd()
|
|
{
|
|
|
|
}
|
|
|
|
public function testDestroy()
|
|
{
|
|
|
|
}
|
|
|
|
public function testReplaceRegistry()
|
|
{
|
|
|
|
}*/
|
|
}
|