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_Suhosin.php')
-rw-r--r--plugins/SecurityInfo/PhpSecInfo/Test/Test_Suhosin.php50
1 files changed, 0 insertions, 50 deletions
diff --git a/plugins/SecurityInfo/PhpSecInfo/Test/Test_Suhosin.php b/plugins/SecurityInfo/PhpSecInfo/Test/Test_Suhosin.php
deleted file mode 100644
index c9a9b3a779..0000000000
--- a/plugins/SecurityInfo/PhpSecInfo/Test/Test_Suhosin.php
+++ /dev/null
@@ -1,50 +0,0 @@
-<?php
-/**
- * Skeleton Test class file for Suhosin group
- *
- * @package PhpSecInfo
- * @author Anthon Pang
- */
-
-/**
- * require the main PhpSecInfo class
- */
-require_once(PHPSECINFO_BASE_DIR.'/Test/Test.php');
-
-
-
-/**
- * This is a skeleton class for PhpSecInfo "Suhosin" tests
- * @package PhpSecInfo
- */
-class PhpSecInfo_Test_Suhosin 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 = 'Suhosin';
-
-
- /**
- * "Suhosin" tests should pretty much be always testable, so the default is just to return true
- *
- * @return boolean
- */
- function isTestable() {
-
- return true;
- }
-
- function getMoreInfoURL() {
- if ($tn = $this->getTestName()) {
- return 'http://www.hardened-php.net/suhosin/index.html';
- } else {
- return false;
- }
- }
-}