Newer
Older

Yassine Doghri
committed
namespace Tests\Session;
use Tests\Support\SessionTestCase;
class ExampleSessionTest extends SessionTestCase

Yassine Doghri
committed
public function setUp(): void
{
parent::setUp();
}

Yassine Doghri
committed
public function testSessionSimple(): void

Yassine Doghri
committed
{
$this->session->set('logged_in', 123);

Yassine Doghri
committed
$value = $this->session->get('logged_in');

Yassine Doghri
committed
$this->assertEquals(123, $value);
}