AC_services_website_design/tests/session/ExampleSessionTest.php

19 lines
339 B
PHP
Raw Normal View History

2024-03-13 12:38:15 +00:00
<?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'));
}
}