Newer
Older
<?php
class ExampleSessionTest extends \Tests\Support\SessionTestCase
{

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

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

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

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