Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/SecurityInfo/PhpSecInfo/Test/Test_Session.php')
-rw-r--r--plugins/SecurityInfo/PhpSecInfo/Test/Test_Session.php46
1 files changed, 46 insertions, 0 deletions
diff --git a/plugins/SecurityInfo/PhpSecInfo/Test/Test_Session.php b/plugins/SecurityInfo/PhpSecInfo/Test/Test_Session.php
new file mode 100644
index 0000000000..5270fa62c4
--- /dev/null
+++ b/plugins/SecurityInfo/PhpSecInfo/Test/Test_Session.php
@@ -0,0 +1,46 @@
+<?php
+/**
+ * Skeleton Test class file for Session group
+ *
+ * @package PhpSecInfo
+ * @author Ed Finkler <coj@funkatron.com>
+ */
+
+
+/**
+ * require the main PhpSecInfo class
+ */
+require_once(PHPSECINFO_BASE_DIR.'/Test/Test.php');
+
+
+
+/**
+ * This is a skeleton class for PhpSecInfo "Session" tests
+ * @package PhpSecInfo
+ */
+class PhpSecInfo_Test_Session extends PhpSecInfo_Test
+{
+
+ /**
+ * This value is used to group test results together.
+ *
+ * For example, all tests related to the mysql lib should be grouped under "mysql."
+ *
+ * @var string
+ */
+ var $test_group = 'Session';
+
+
+ /**
+ * "Session" tests should pretty much be always testable, so the default is
+ * just to return true
+ *
+ * @return boolean
+ */
+ function isTestable() {
+
+ return true;
+ }
+
+
+} \ No newline at end of file