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
/
Common
/
/srv/admin/htdocs/phppgadmin-5.6/tests/simpletests/testcase/Common/CommonGroupTest.php
<?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()); } } ?>