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:
authorZarubin Stas <zarubin@zsv.org.ua>2011-07-14 08:45:20 +0400
committerZarubin Stas <zarubin@zsv.org.ua>2011-07-14 08:45:20 +0400
commitb309cf3e985f71dd0bf295a5c503e171605231d1 (patch)
tree0002f2bf4058df6fa708e15eb2b4d2c2f9b3cc08 /phpunit.xml.dist
parent05a79cbbf8d366a72e17e941dc52a070d296ff1b (diff)
Small changes in Selenium tests configuration
Diffstat (limited to 'phpunit.xml.dist')
-rw-r--r--phpunit.xml.dist20
1 files changed, 15 insertions, 5 deletions
diff --git a/phpunit.xml.dist b/phpunit.xml.dist
index 33cee08d56..0431bd989c 100644
--- a/phpunit.xml.dist
+++ b/phpunit.xml.dist
@@ -11,13 +11,20 @@
host="127.0.0.1"
port="4444"
timeout="30000"/>
+ <browser name="Google Chrome on localhost"
+ browser="googlechrome"
+ host="127.0.0.1"
+ port="4444"
+ timeout="30000"/>
</selenium>
<php>
- <const name="TESTSUITE_SERVER" value="localhost"/>
- <const name="TESTSUITE_DATABASE" value="test_database"/>
- <const name="TESTSUITE_USER" value="test_user"/>
- <const name="TESTSUITE_PASSWORD" value="test_password"/>
+ <const name="TESTSUITE_SERVER" value="localhost"/>
+ <const name="TESTSUITE_USER" value="root"/>
+ <const name="TESTSUITE_PASSWORD" value=""/>
+ <const name="TESTSUITE_DATABASE" value="test"/>
+ <const name="TESTSUITE_PHPMYADMIN_HOST" value="http://localhost" />
+ <const name="TESTSUITE_PHPMYADMIN_URL" value="/phpmyadmin" />
</php>
<testsuites>
@@ -27,8 +34,11 @@
<directory suffix="_test.php">test/libraries/common</directory>
<directory suffix="_test.php">test/libraries</directory>
</testsuite>
+ <testsuite name="Classes">
+ <directory suffix="_test.php">test/classes</directory>
+ </testsuite>
<testsuite name="Selenium">
- <!--<directory suffix="Test.php">test/selenium</directory>-->
+ <directory suffix="Test.php">test/selenium</directory>
</testsuite>
</testsuites>