From 5600304415f2186363f41b9917008447f0ab70d5 Mon Sep 17 00:00:00 2001 From: Platonides Date: Wed, 27 Oct 2010 15:51:37 +0000 Subject: [PATCH] r74753, r74755, r75254 added new settings, but didn't update SeleniumConfigurationTest.php breaking the tests --- .../includes/SeleniumConfigurationTest.php | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/maintenance/tests/phpunit/includes/SeleniumConfigurationTest.php b/maintenance/tests/phpunit/includes/SeleniumConfigurationTest.php index 3bb4b7482a..7841e2fb0a 100644 --- a/maintenance/tests/phpunit/includes/SeleniumConfigurationTest.php +++ b/maintenance/tests/phpunit/includes/SeleniumConfigurationTest.php @@ -23,6 +23,10 @@ wikiUrl = "http://localhost/deployment" username = "xxxxxxx" userPassword = "" testBrowser = "chrome" +startserver = +stopserver = +jUnitLogFile = +runAgainstGrid = false [SeleniumTests] testSuite[SimpleSeleniumTestSuite] = "maintenance/tests/selenium/SimpleSeleniumTestSuite.php" @@ -44,7 +48,12 @@ testSuite[TestSuiteName] = "testSuitePath" 'wikiUrl' => 'http://localhost/deployment', 'username' => 'xxxxxxx', 'userPassword' => '', - 'testBrowser' => 'chrome' + 'testBrowser' => 'chrome', + 'startserver' => null, + 'stopserver' => null, + 'seleniumserverexecpath' => null, + 'jUnitLogFile' => null, + 'runAgainstGrid' => null ); /* * Array of expected testSuites from $testConfig0 @@ -77,7 +86,12 @@ testBrowser = "firefox" 'wikiUrl' => null, 'username' => null, 'userPassword' => null, - 'testBrowser' => 'firefox' + 'testBrowser' => 'firefox', + 'startserver' => null, + 'stopserver' => null, + 'seleniumserverexecpath' => null, + 'jUnitLogFile' => null, + 'runAgainstGrid' => null ); /* * Expected test suites from $testConfig1 -- 2.20.1