Skip to content

Commit

Permalink
Move WDBS tests to webdriven package
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Oct 29, 2014
1 parent 487ebd0 commit a26fe4e
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
limitations under the License.
*/

package org.openqa.selenium.v1.internal.seleniumemulation;
package com.thoughtworks.selenium.webdriven;

import org.junit.Before;
import org.junit.Test;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/


package org.openqa.selenium.v1.internal.seleniumemulation;
package com.thoughtworks.selenium.webdriven;

import static org.junit.Assert.assertEquals;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,15 @@
* limitations under the License.
*/

package org.openqa.selenium.v1.internal.seleniumemulation;
package com.thoughtworks.selenium.webdriven;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;

@RunWith(Suite.class)
@Suite.SuiteClasses({
CompoundMutatorTest.class,
ScriptMutatorTest.class,
TimerTest.class,
VariableDeclarationTest.class
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/


package org.openqa.selenium.v1.internal.seleniumemulation;
package com.thoughtworks.selenium.webdriven;

import com.thoughtworks.selenium.SeleniumException;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
limitations under the License.
*/

package org.openqa.selenium.v1.internal.seleniumemulation;
package com.thoughtworks.selenium.webdriven;

import org.junit.Before;
import org.junit.Test;
Expand Down
2 changes: 1 addition & 1 deletion java/client/test/org/openqa/selenium/v1/SmallTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
@Suite.SuiteClasses({
FastWebDriverBackedSeleniumTest.class,
WebDriverCommandProcessorTest.class,
org.openqa.selenium.v1.internal.seleniumemulation.SmallTests.class
com.thoughtworks.selenium.webdriven.SmallTests.class
})
public class SmallTests {
}

0 comments on commit a26fe4e

Please sign in to comment.