Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
webbasics
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Taddeüs Kroes
webbasics
Commits
b09f6f6c
Commit
b09f6f6c
authored
Oct 06, 2012
by
Taddeus Kroes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Output buffering is now closed earlier in session unit tests
parent
aba79575
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
tests/test_session.php
tests/test_session.php
+4
-4
No files found.
tests/test_session.php
View file @
b09f6f6c
...
...
@@ -16,7 +16,7 @@ class SessionTest extends SingletonTestCase {
function
setUp
()
{
parent
::
setUp
();
$this
->
session
=
Session
::
getInstance
();
$this
->
session
=
@
Session
::
getInstance
();
}
function
tearDown
()
{
...
...
@@ -72,6 +72,9 @@ class SessionTest extends SingletonTestCase {
$old_id
=
session_id
();
$this
->
session
->
regenerateId
();
$this
->
assertNotEquals
(
$old_id
,
session_id
());
// Disable output buffering to show progress on other tests
@
ob_end_flush
();
}
function
testClear
()
{
...
...
@@ -80,9 +83,6 @@ class SessionTest extends SingletonTestCase {
$this
->
assertEmpty
(
$_SESSION
);
}
/**
* @depends testRegenerateId
*/
function
testDestroySimple
()
{
$this
->
session
->
destroy
();
$this
->
assertEquals
(
''
,
session_id
());
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment