Skip to content

Commit a26fe4e

Browse files
committed
Move WDBS tests to webdriven package
1 parent 487ebd0 commit a26fe4e

File tree

8 files changed

+7
-6
lines changed

8 files changed

+7
-6
lines changed

java/client/test/org/openqa/selenium/v1/internal/seleniumemulation/CompoundMutatorTest.java java/client/test/com/thoughtworks/selenium/webdriven/CompoundMutatorTest.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.internal.seleniumemulation;
17+
package com.thoughtworks.selenium.webdriven;
1818

1919
import org.junit.Before;
2020
import org.junit.Test;

java/client/test/org/openqa/selenium/v1/internal/seleniumemulation/ScriptMutatorTest.java java/client/test/com/thoughtworks/selenium/webdriven/ScriptMutatorTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717

18-
package org.openqa.selenium.v1.internal.seleniumemulation;
18+
package com.thoughtworks.selenium.webdriven;
1919

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

java/client/test/org/openqa/selenium/v1/internal/seleniumemulation/SmallTests.java java/client/test/com/thoughtworks/selenium/webdriven/SmallTests.java

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

18-
package org.openqa.selenium.v1.internal.seleniumemulation;
18+
package com.thoughtworks.selenium.webdriven;
1919

2020
import org.junit.runner.RunWith;
2121
import org.junit.runners.Suite;
2222

2323
@RunWith(Suite.class)
2424
@Suite.SuiteClasses({
2525
CompoundMutatorTest.class,
26+
ScriptMutatorTest.class,
2627
TimerTest.class,
2728
VariableDeclarationTest.class
2829
})

java/client/test/org/openqa/selenium/v1/internal/seleniumemulation/TimerTest.java java/client/test/com/thoughtworks/selenium/webdriven/TimerTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*/
1717

1818

19-
package org.openqa.selenium.v1.internal.seleniumemulation;
19+
package com.thoughtworks.selenium.webdriven;
2020

2121
import com.thoughtworks.selenium.SeleniumException;
2222

java/client/test/org/openqa/selenium/v1/internal/seleniumemulation/VariableDeclarationTest.java java/client/test/com/thoughtworks/selenium/webdriven/VariableDeclarationTest.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.internal.seleniumemulation;
17+
package com.thoughtworks.selenium.webdriven;
1818

1919
import org.junit.Before;
2020
import org.junit.Test;

java/client/test/org/openqa/selenium/v1/SmallTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
@Suite.SuiteClasses({
2525
FastWebDriverBackedSeleniumTest.class,
2626
WebDriverCommandProcessorTest.class,
27-
org.openqa.selenium.v1.internal.seleniumemulation.SmallTests.class
27+
com.thoughtworks.selenium.webdriven.SmallTests.class
2828
})
2929
public class SmallTests {
3030
}

0 commit comments

Comments
 (0)