mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
22 lines
369 B
PHP
Executable File
22 lines
369 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
final class ExampleSessionTest extends \Tests\Support\SessionTestCase
|
|
{
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
}
|
|
|
|
public function testSessionSimple()
|
|
{
|
|
$this->session->set('logged_in', 123);
|
|
|
|
$value = $this->session->get('logged_in');
|
|
|
|
$this->assertSame(123, $value);
|
|
}
|
|
}
|