aboutsummaryrefslogtreecommitdiffstats
path: root/tests/jnlp_tests/simple/CheckServices
diff options
context:
space:
mode:
authorJiri Vanek <[email protected]>2012-05-28 11:00:49 +0200
committerJiri Vanek <[email protected]>2012-05-28 11:00:49 +0200
commit056ac3746d71b2cd92d4643f136ed28a20765227 (patch)
tree9e6bea5b5afa80b9091c6bcc745bfc71f96bf92f /tests/jnlp_tests/simple/CheckServices
parent1705caf0db175cb9537313e5c1d9df14186f5bea (diff)
Get rid of repeated sout/serr in reproducers testcases/unit tests and introduce bottleneck for loging.
Diffstat (limited to 'tests/jnlp_tests/simple/CheckServices')
-rw-r--r--tests/jnlp_tests/simple/CheckServices/testcases/CheckServicesTests.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/jnlp_tests/simple/CheckServices/testcases/CheckServicesTests.java b/tests/jnlp_tests/simple/CheckServices/testcases/CheckServicesTests.java
index 095d87d..f2c71af 100644
--- a/tests/jnlp_tests/simple/CheckServices/testcases/CheckServicesTests.java
+++ b/tests/jnlp_tests/simple/CheckServices/testcases/CheckServicesTests.java
@@ -47,11 +47,7 @@ public class CheckServicesTests {
@Test
public void CheckServices() throws Exception {
- System.out.println("connecting CheckServices request");
- System.err.println("connecting CheckServices request");
ServerAccess.ProcessResult pr = server.executeJavawsHeadless(null, "/CheckServices.jnlp");
- System.out.println(pr.stdout);
- System.err.println(pr.stderr);
String s0 = "Codebase for applet was found in constructor";
Assert.assertTrue("CheckServices stdout should contain `" + s0 + "' bud didn't.", pr.stdout.contains(s0));
String s1 = "Codebase for applet was found in init()";