This repository has been archived on 2025-05-12. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
hack13-blog/tests/session/ExampleSessionTest.php
2020-07-27 22:22:06 -04:00

18 lines
299 B
PHP

<?php
class ExampleSessionTest extends \Tests\Support\SessionTestCase
{
public function setUp(): void
{
parent::setUp();
}
public function testSessionSimple()
{
$this->session->set('logged_in', 123);
$value = $this->session->get('logged_in');
$this->assertEquals(123, $value);
}
}