Skip to content

Commit d049877

Browse files
committed
Initial test commit
Created test directory and SessionHandlerTest.php
1 parent b465e15 commit d049877

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

test/SessionHandlerTest.php

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?php
2+
/**
3+
* PHPUnit tests for models/Session/Handler.php
4+
*
5+
* @package php-simple-sessions
6+
* @author Liam Kelly <https://github.com/likel>
7+
* @copyright 2017 Liam Kelly
8+
* @license MIT License <https://github.com/likel/php-simple-sessions/blob/master/LICENSE>
9+
* @link https://github.com/likel/php-simple-sessions
10+
* @version 1.0.0
11+
*/
12+
use PHPUnit\Framework\TestCase;
13+
14+
// Require the autoloader to load the models when required
15+
require_once(__DIR__ . '/../src/autoload.php');
16+
17+
final class SessionHandlerTest extends TestCase
18+
{
19+
/**
20+
* Test for the constructor outcomes
21+
*/
22+
public function testConstruct()
23+
{
24+
25+
}
26+
}

0 commit comments

Comments
 (0)