Merms New Website

This commit is contained in:
Olu Amey
2021-05-19 14:36:02 +00:00
commit 685a80769d
288 changed files with 86164 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
<?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);
}
}