blob: d68f2453025c4317500fe0d5e18c6efb889b1c48 (
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
|
<?php
/**
* Function area: Common manipulation
*
* @author Augmentum SpikeSource Team
* @copyright 2005 by Augmentum, Inc.
*/
// Import the test cases.
require_once('SecurityTest.php');
require_once('ExportTest.php');
require_once('ImportTest.php');
/**
* This class is to test the whole common manipulation function area.
* It includes security/export/import manipulation.
*/
class CommonGroupTest extends GroupTest
{
function CommonGroupTest()
{
$this->GroupTest('Common manipulation group test.');
$this->addTestClass(new SecurityTest());
$this->addTestClass(new ExportTest());
$this->addTestClass(new ImportTest());
}
}
?>
|