Skip to content

Commit 429477a

Browse files
committed
Moving last part of RC-related test code to com.thoughtworks.selenium package
1 parent 279f3c4 commit 429477a

8 files changed

+9
-7
lines changed

java/client/test/com/thoughtworks/selenium/BaseSuite.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616

1717
package com.thoughtworks.selenium;
1818

19+
import com.thoughtworks.selenium.testing.SeleniumTestEnvironment;
20+
1921
import java.util.logging.Logger;
2022

2123
import org.junit.ClassRule;
@@ -24,7 +26,6 @@
2426
import org.junit.rules.TestRule;
2527
import org.openqa.selenium.environment.GlobalTestEnvironment;
2628
import org.openqa.selenium.environment.TestEnvironment;
27-
import org.openqa.selenium.v1.SeleniumTestEnvironment;
2829

2930
public class BaseSuite {
3031

java/client/test/com/thoughtworks/selenium/InternalSelenseTestBase.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
import com.google.common.io.Files;
2929
import com.google.common.io.Resources;
3030

31+
import com.thoughtworks.selenium.testing.SeleniumTestEnvironment;
3132
import com.thoughtworks.selenium.webdriven.WebDriverBackedSelenium;
3233

3334
import org.junit.After;
@@ -51,7 +52,6 @@
5152
import org.openqa.selenium.testing.InProject;
5253
import org.openqa.selenium.testing.drivers.Browser;
5354
import org.openqa.selenium.testing.drivers.WebDriverBuilder;
54-
import org.openqa.selenium.v1.SeleniumTestEnvironment;
5555

5656
import java.io.File;
5757
import java.io.IOException;

java/client/test/com/thoughtworks/selenium/SessionExtensionJsTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
import com.thoughtworks.selenium.DefaultSelenium;
2222
import com.thoughtworks.selenium.Selenium;
2323
import com.thoughtworks.selenium.SeleniumException;
24+
import com.thoughtworks.selenium.testing.SeleniumTestEnvironment;
2425

2526
import org.junit.After;
2627
import org.junit.AfterClass;
2728
import org.junit.Before;
2829
import org.junit.BeforeClass;
2930
import org.junit.Test;
30-
import org.openqa.selenium.v1.SeleniumTestEnvironment;
3131

3232
import java.net.MalformedURLException;
3333
import java.net.URL;

java/client/test/com/thoughtworks/selenium/StartTest.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919

2020
import static org.junit.Assert.assertEquals;
2121

22+
import com.thoughtworks.selenium.testing.SeleniumTestEnvironment;
23+
2224
import org.junit.AfterClass;
2325
import org.junit.BeforeClass;
2426
import org.junit.Test;
@@ -27,7 +29,6 @@
2729
import org.openqa.selenium.WebDriver;
2830
import org.openqa.selenium.remote.DesiredCapabilities;
2931
import org.openqa.selenium.remote.RemoteWebDriver;
30-
import org.openqa.selenium.v1.SeleniumTestEnvironment;
3132

3233
import java.net.MalformedURLException;
3334
import java.net.URL;

java/client/test/org/openqa/selenium/v1/CachedContentServlet.java java/client/test/com/thoughtworks/selenium/testing/CachedContentServlet.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.openqa.selenium.v1;
1+
package com.thoughtworks.selenium.testing;
22

33
import org.seleniumhq.jetty7.http.HttpFields;
44

java/client/test/org/openqa/selenium/v1/SeleniumAppServer.java java/client/test/com/thoughtworks/selenium/testing/SeleniumAppServer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
limitations under the License.
1515
*/
1616

17-
package org.openqa.selenium.v1;
17+
package com.thoughtworks.selenium.testing;
1818

1919
import java.io.File;
2020

java/client/test/org/openqa/selenium/v1/SeleniumTestEnvironment.java java/client/test/com/thoughtworks/selenium/testing/SeleniumTestEnvironment.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
limitations under the License.
1515
*/
1616

17-
package org.openqa.selenium.v1;
17+
package com.thoughtworks.selenium.testing;
1818

1919
import com.google.common.collect.Lists;
2020

0 commit comments

Comments
 (0)