Passed
Push — develop ( db5506...7ff7f1 )
by Felipe
06:26 queued 02:43
created

CommonGroupTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 8
rs 10
c 0
b 0
f 0
wmc 1
1
<?php
2
/**
3
 * Function area: Common manipulation
4
 *
5
 * @author     Augmentum SpikeSource Team 
6
 * @copyright  2005 by Augmentum, Inc.
7
 */
8
9
// Import the test cases.   
10
require_once('SecurityTest.php');
11
require_once('ExportTest.php');
12
require_once('ImportTest.php');
13
14
/**
15
 * This class is to test the whole common manipulation function area.
16
 * It includes security/export/import manipulation.
17
 */
18
class CommonGroupTest extends GroupTest
19
{
20
    function CommonGroupTest()
21
    {
22
        $this->GroupTest('Common manipulation group test.');
23
        $this->addTestClass(new SecurityTest());
24
        $this->addTestClass(new ExportTest());
25
        $this->addTestClass(new ImportTest());
26
    }
27
}
28
?>
29