16 lines
289 B
PHP
16 lines
289 B
PHP
|
<?php
|
||
|
|
||
|
use CodeIgniter\Test\CIUnitTestCase;
|
||
|
|
||
|
/**
|
||
|
* @internal
|
||
|
*/
|
||
|
final class ExampleSessionTest extends CIUnitTestCase
|
||
|
{
|
||
|
public function testSessionSimple()
|
||
|
{
|
||
|
$this->session->set('logged_in', 123);
|
||
|
$this->assertSame(123, $this->session->get('logged_in'));
|
||
|
}
|
||
|
}
|