Files
Buadhong/base/vendor/codeigniter4/framework/tests/session/ExampleSessionTest.php
T
Diskette Guy 07171f5b5a add trashes
2025-07-21 15:40:51 +07:00

18 lines
323 B
PHP

<?php
use CodeIgniter\Test\CIUnitTestCase;
/**
* @internal
*/
final class ExampleSessionTest extends CIUnitTestCase
{
public function testSessionSimple(): void
{
$session = service('session');
$session->set('logged_in', 123);
$this->assertSame(123, $session->get('logged_in'));
}
}