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
/
//srv/admin/htdocs/phppgadmin-5.6/tests/simpletests/testcase/testphpPgAdminMain.php
<?php /** * This is entrance to run all the test suites and generate a report for the results. * * @author Augmentum SpikeSource Team * @copyright 2005 by Augmentum, Inc. */ // Import necessary library files to setup the testcase. // And for web testcase, the library web_tester.php shoule be included. require_once("$PHP_SIMPLETEST_HOME/web_tester.php"); require_once("$PHP_SIMPLETEST_HOME/reporter.php"); require_once('Public/SetPrecondition.php'); require_once('Server/ServerGroupTest.php'); require_once('Databases/DatabaseGroupTest.php'); require_once('Schemas/SchemasGroupTest.php'); require_once('Tables/TableGroupTest.php'); require_once('Common/CommonGroupTest.php'); /** * This class is to test the whole phpPgAdmin. * It includes server/database/schema/table management and common manipulation. */ class phpPgAdminGroupTest extends GroupTest { function phpPgAdminGroupTest() { $this->GroupTest('phpPgAdmin automation test.'); $this->addTestClass(new ServerGroupTest()); $this->addTestClass(new DatabaseGroupTest()); $this->addTestClass(new SchemasGroupTest()); $this->addTestClass(new TableGroupTest()); $this->addTestClass(new CommonGroupTest()); } } $phpPgAdminTest = &new phpPgAdminGroupTest(); $phpPgAdminTest->run(new HtmlReporter()); ?>