mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-04 15:26:43 +02:00
build(app): bootstrap codeigniter4 app using docker-compose
This commit is contained in:
parent
11080d46d1
commit
9070ca2651
87 changed files with 5411 additions and 8 deletions
18
src/tests/session/ExampleSessionTest.php
Normal file
18
src/tests/session/ExampleSessionTest.php
Normal 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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue