sdwebserver/tests/session/ExampleSessionTest.php

16 lines
289 B
PHP
Raw Normal View History

2022-03-14 19:13:10 +01:00
<?php
use CodeIgniter\Test\CIUnitTestCase;
/**
* @internal
*/
final class ExampleSessionTest extends CIUnitTestCase
{
public function testSessionSimple()
{
$this->session->set('logged_in', 123);
$this->assertSame(123, $this->session->get('logged_in'));
}
}