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

Test_Core.php « Test « PhpSecInfo « SecurityInfo « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4778394f6ff2ce03f8522bb4728a918d50aebe11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
/**
 * Skeleton Test class file for Core 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 "Core" tests
 * @package PhpSecInfo
 */
class PhpSecInfo_Test_Core 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 = 'Core';


    /**
     * "Core" tests should pretty much be always testable, so the default is just to return true
     *
     * @return boolean
     */
    function isTestable()
    {

        return true;
    }


}