Skip to content
This repository was archived by the owner on Sep 1, 2025. It is now read-only.

Commit 7a20798

Browse files
authored
Update php_sessionTest.php
1 parent 5dec622 commit 7a20798

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

tests/php_sessionTest/php_sessionTest.php

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
<?php
22
namespace php_sessionTest;
3-
use session;
3+
use php_session;
4+
use php_session\session;
45
use PHPUnit\Framework\TestCase;
56
class php_sessionTest extends TestCase{
67

78
public function testSession(){
9+
10+
$included_files = get_included_files();
11+
foreach ($included_files as $filename) {
12+
echo "$filename\n";
13+
}
14+
15+
816
$expire = 180;
917
$uid = md5('uid');
1018
$name = "MYSESSION";

0 commit comments

Comments
 (0)