Files
ToksLawMainDELETE2/tests/session/ExampleSessionTest.php
T
CHIEFSOFT\ameye e2c46c1fa0 first commit
2024-09-01 22:43:13 -04:00

19 lines
345 B
PHP

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