Passed
Push — master ( edcd19...7b8e38 )
by Felipe
05:02
created

TableGroupTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 10
rs 10
c 0
b 0
f 0
wmc 1
1
<?php
2
 /**
3
  * Function area:        Table
4
  * @author     Augmentum SpikeSource Team 
5
  * @copyright  2005 by Augmentum, Inc.
6
  */
7
8
require_once('ColumnTest.php');
9
require_once('IndexesTest.php');
10
require_once('ConstraintsTest.php');
11
require_once('TriggersTest.php');
12
require_once('RulesTest.php');
13
require_once('InfoTest.php');
14
require_once('DeadlockTest.php');
15
16
17
/**
18
 *  Group test class to run all test cases in the table function area automatically. 
19
 */
20
class TableGroupTest extends GroupTest {
21
    function TableGroupTest() {
22
        $this->GroupTest('Table management group test.');
23
        $this->addTestClass(new ColumnTest());        
24
        $this->addTestClass(new TriggersTest());
25
        $this->addTestClass(new RulesTest());
26
        $this->addTestClass(new IndexesTest());
27
        $this->addTestClass(new InfoTest());        
28
        $this->addTestClass(new ConstraintsTest());
29
        $this->addTestClass(new DeadlockTest());
30
    }
31
}
32
?>
33