Skip to content

Commit

Permalink
Delete the unused ParallelSuite.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
shs96c committed Apr 4, 2016
1 parent 19c0c17 commit afba7f6
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 126 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,18 @@
import org.junit.BeforeClass;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;

import org.openqa.selenium.environment.GlobalTestEnvironment;
import org.openqa.selenium.environment.InProcessTestEnvironment;
import org.openqa.selenium.html5.Html5Tests;
import org.openqa.selenium.interactions.InteractionTests;
import org.openqa.selenium.logging.AvailableLogsTest;
import org.openqa.selenium.logging.GetLogsTest;
import org.openqa.selenium.logging.PerformanceLoggingTest;
import org.openqa.selenium.logging.PerformanceLogTypeTest;
import org.openqa.selenium.logging.PerformanceLoggingTest;
import org.openqa.selenium.support.ui.SelectElementTest;
import org.openqa.selenium.testing.JUnit4TestBase;
import org.openqa.selenium.testing.ParallelSuite;

@RunWith(ParallelSuite.class)
@RunWith(Suite.class)
@Suite.SuiteClasses({
AlertsTest.class,
AtomsInjectionTest.class,
Expand Down
1 change: 0 additions & 1 deletion java/client/test/org/openqa/selenium/testing/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ java_library(name = 'helpers',
java_library(name = 'test-base',
srcs = [
'JUnit4TestBase.java',
'ParallelSuite.java',
'ProxyServer.java',
'SeleniumTestRunner.java',
'TestUtilities.java',
Expand Down
120 changes: 0 additions & 120 deletions java/client/test/org/openqa/selenium/testing/ParallelSuite.java

This file was deleted.

1 change: 0 additions & 1 deletion java/client/test/org/openqa/selenium/testing/build.desc
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ java_library(name = "util",
java_library(name = "junit_4",
srcs = [
"JUnit4TestBase.java",
"ParallelSuite.java",
"SeleniumTestRunner.java",
"NotYetImplemented.java",
],
Expand Down

0 comments on commit afba7f6

Please sign in to comment.