Files
DESKTOP-DH6BVPV\chiefsoft 6ddfa92eed first commit
2022-11-20 09:46:33 -05:00

19 lines
339 B
PHP

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