Skip to content

Commit afba7f6

Browse files
committed
Delete the unused ParallelSuite.
It turns out that we can't find anyone using the parallelisation capabilities this suite offers, and it's buggy. Removing it from the tree.
1 parent 19c0c17 commit afba7f6

File tree

4 files changed

+2
-126
lines changed

4 files changed

+2
-126
lines changed

java/client/test/org/openqa/selenium/StandardSeleniumTests.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,18 @@
2121
import org.junit.BeforeClass;
2222
import org.junit.runner.RunWith;
2323
import org.junit.runners.Suite;
24-
2524
import org.openqa.selenium.environment.GlobalTestEnvironment;
2625
import org.openqa.selenium.environment.InProcessTestEnvironment;
2726
import org.openqa.selenium.html5.Html5Tests;
2827
import org.openqa.selenium.interactions.InteractionTests;
2928
import org.openqa.selenium.logging.AvailableLogsTest;
3029
import org.openqa.selenium.logging.GetLogsTest;
31-
import org.openqa.selenium.logging.PerformanceLoggingTest;
3230
import org.openqa.selenium.logging.PerformanceLogTypeTest;
31+
import org.openqa.selenium.logging.PerformanceLoggingTest;
3332
import org.openqa.selenium.support.ui.SelectElementTest;
3433
import org.openqa.selenium.testing.JUnit4TestBase;
35-
import org.openqa.selenium.testing.ParallelSuite;
3634

37-
@RunWith(ParallelSuite.class)
35+
@RunWith(Suite.class)
3836
@Suite.SuiteClasses({
3937
AlertsTest.class,
4038
AtomsInjectionTest.class,

java/client/test/org/openqa/selenium/testing/BUCK

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ java_library(name = 'helpers',
3535
java_library(name = 'test-base',
3636
srcs = [
3737
'JUnit4TestBase.java',
38-
'ParallelSuite.java',
3938
'ProxyServer.java',
4039
'SeleniumTestRunner.java',
4140
'TestUtilities.java',

java/client/test/org/openqa/selenium/testing/ParallelSuite.java

Lines changed: 0 additions & 120 deletions
This file was deleted.

java/client/test/org/openqa/selenium/testing/build.desc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ java_library(name = "util",
4040
java_library(name = "junit_4",
4141
srcs = [
4242
"JUnit4TestBase.java",
43-
"ParallelSuite.java",
4443
"SeleniumTestRunner.java",
4544
"NotYetImplemented.java",
4645
],

0 commit comments

Comments
 (0)