We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b465e15 commit d049877Copy full SHA for d049877
test/SessionHandlerTest.php
@@ -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