Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
admin
/
htdocs
/
phppgadmin-5.6
/
tests
/
simpletests
/
testcase
/
Tables
/
//srv/admin/htdocs/phppgadmin-5.6/tests/simpletests/testcase/Tables/TableGroupTest.php
<?php /** * Function area: Table * @author Augmentum SpikeSource Team * @copyright 2005 by Augmentum, Inc. */ require_once('ColumnTest.php'); require_once('IndexesTest.php'); require_once('ConstraintsTest.php'); require_once('TriggersTest.php'); require_once('RulesTest.php'); require_once('InfoTest.php'); require_once('DeadlockTest.php'); /** * Group test class to run all test cases in the table function area automatically. */ class TableGroupTest extends GroupTest { function TableGroupTest() { $this->GroupTest('Table management group test.'); $this->addTestClass(new ColumnTest()); $this->addTestClass(new TriggersTest()); $this->addTestClass(new RulesTest()); $this->addTestClass(new IndexesTest()); $this->addTestClass(new InfoTest()); $this->addTestClass(new ConstraintsTest()); $this->addTestClass(new DeadlockTest()); } } ?>