Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/AllSeleniumTests.php')
-rw-r--r--test/AllSeleniumTests.php39
1 files changed, 0 insertions, 39 deletions
diff --git a/test/AllSeleniumTests.php b/test/AllSeleniumTests.php
deleted file mode 100644
index 50b27c901a..0000000000
--- a/test/AllSeleniumTests.php
+++ /dev/null
@@ -1,39 +0,0 @@
-<?php
-/* vim: set expandtab sw=4 ts=4 sts=4: */
-/**
- * runs all defined Selenium tests
- *
- * @version $Id$
- * @package phpMyAdmin-test
- */
-
-
-/**
- *
- */
-require_once 'PHPUnit/Framework.php';
-require_once 'PHPUnit/TextUI/TestRunner.php';
-require_once './PmaSeleniumTestCase.php';
-require_once './PmaSeleniumLoginTest.php';
-require_once './PmaSeleniumXssTest.php';
-require_once './PmaSeleniumPrivilegesTest.php';
-
-class AllSeleniumTests
-{
- public static function main()
- {
- $parameters = array();
- PHPUnit_TextUI_TestRunner::run(self::suite(), $parameters);
- }
-
- public static function suite()
- {
- $suite = new PHPUnit_Framework_TestSuite('phpMyAdmin');
-
- $suite->addTestSuite('PmaSeleniumLoginTest');
- $suite->addTestSuite('PmaSeleniumXssTest');
- $suite->addTestSuite('PmaSeleniumPrivilegesTest');
- return $suite;
- }
-}
-?>