aboutsummaryrefslogtreecommitdiffstats
path: root/tests/junit-runner/CommandLine.java
diff options
context:
space:
mode:
authorAndrew John Hughes <[email protected]>2011-05-11 14:56:32 +0100
committerAndrew John Hughes <[email protected]>2011-05-11 14:56:32 +0100
commit3ad81af8c11d70e2cae4f7140e86d1cec1e02609 (patch)
tree7bb962e895aa65eaa513332bc25f913dbbd828de /tests/junit-runner/CommandLine.java
parenta78e3962bcb462b2cdb4e0f9f36a00e513dc8a49 (diff)
Reverting unapproved change 235:114a981d3552
Diffstat (limited to 'tests/junit-runner/CommandLine.java')
-rw-r--r--tests/junit-runner/CommandLine.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/junit-runner/CommandLine.java b/tests/junit-runner/CommandLine.java
index 1807c65..ad7dc7e 100644
--- a/tests/junit-runner/CommandLine.java
+++ b/tests/junit-runner/CommandLine.java
@@ -7,7 +7,6 @@
* http://www.eclipse.org/legal/cpl-v10.html
*/
-import java.io.File;
import java.util.ArrayList;
import java.util.List;
@@ -42,8 +41,6 @@ public class CommandLine extends JUnitCore {
system.out().println("ERROR: Could not find class: " + each);
}
}
- RunListener jXmlOutput = new JunitLikeXmlOutputListener(system, new File("tests-output.xml"));
- addListener(jXmlOutput);
RunListener listener = new LessVerboseTextListener(system);
addListener(listener);
Result result = run(classes.toArray(new Class[0]));