19 lines
347 B
PHP
Executable File
19 lines
347 B
PHP
Executable File
<?php
|
|
|
|
use CodeIgniter\Test\CIUnitTestCase;
|
|
use Config\Services;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
final class ExampleSessionTest extends CIUnitTestCase
|
|
{
|
|
public function testSessionSimple()
|
|
{
|
|
$session = Services::session();
|
|
|
|
$session->set('pre_logged_in', 123);
|
|
$this->assertSame(123, $session->get('pre_logged_in'));
|
|
}
|
|
}
|