Carsten Brandt
11 years ago
1 changed files with 28 additions and 0 deletions
@ -0,0 +1,28 @@ |
|||||||
|
<?php |
||||||
|
|
||||||
|
namespace yiiunit\framework\web; |
||||||
|
|
||||||
|
use Yii; |
||||||
|
use yii\caching\FileCache; |
||||||
|
use yii\web\CacheSession; |
||||||
|
|
||||||
|
/** |
||||||
|
* @group web |
||||||
|
*/ |
||||||
|
class CacheSessionTest extends \yiiunit\TestCase |
||||||
|
{ |
||||||
|
protected function setUp() |
||||||
|
{ |
||||||
|
parent::setUp(); |
||||||
|
$this->mockApplication(); |
||||||
|
Yii::$app->setComponent('cache', new FileCache()); |
||||||
|
} |
||||||
|
|
||||||
|
public function testCreate() |
||||||
|
{ |
||||||
|
$session = new CacheSession(); |
||||||
|
|
||||||
|
$session->writeSession('test', 'sessionData'); |
||||||
|
$this->assertEquals('sessionData', $session->readSession('test')); |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue