aboutsummaryrefslogtreecommitdiffstats
path: root/tests/reproducers/signed/ExtensionJnlp
diff options
context:
space:
mode:
authorAndrew Azores <[email protected]>2013-11-07 09:59:22 -0500
committerAndrew Azores <[email protected]>2013-11-07 09:59:22 -0500
commitcc383fcf7288977d01608d9da4d9d84d167e1aad (patch)
treef5b899aa9cd705f7d1aba497874c8c787018903d /tests/reproducers/signed/ExtensionJnlp
parent8f59c1b0bf5fed4fce80ebcc0bc588e62dde706d (diff)
Reproducer test cleanup to remove deprecation warnings and type checking warnings.
ServerAccess.ProcessResult removed and reference replaced with ProcessResult. junit.framework.assert replaced in favour of org.junit.Assert. Added parameterized typing to instantiation of several fields and local variables where the declaration was already parameterized.
Diffstat (limited to 'tests/reproducers/signed/ExtensionJnlp')
-rw-r--r--tests/reproducers/signed/ExtensionJnlp/testcases/ExtensionJnlpTest.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/reproducers/signed/ExtensionJnlp/testcases/ExtensionJnlpTest.java b/tests/reproducers/signed/ExtensionJnlp/testcases/ExtensionJnlpTest.java
index 385e937..749e844 100644
--- a/tests/reproducers/signed/ExtensionJnlp/testcases/ExtensionJnlpTest.java
+++ b/tests/reproducers/signed/ExtensionJnlp/testcases/ExtensionJnlpTest.java
@@ -38,6 +38,7 @@ exception statement from your version.
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
+import net.sourceforge.jnlp.ProcessResult;
import net.sourceforge.jnlp.ServerAccess;
import net.sourceforge.jnlp.annotations.Bug;
@@ -55,7 +56,7 @@ public class ExtensionJnlpTest {
@Test
public void checkingForRequiredResources() throws Exception {
- ServerAccess.ProcessResult pr = server.executeJavawsHeadless(l, "/UsesSignedJar.jnlp");
+ ProcessResult pr = server.executeJavawsHeadless(l, "/UsesSignedJar.jnlp");
Assert.assertTrue("Could not locate SignedJarResource class within SignedJarResource jar", pr.stdout.contains(jarOutput));
String s = "Running SignedJnlpResource..";
@@ -66,21 +67,21 @@ public class ExtensionJnlpTest {
@Bug(id = "PR1040")
@Test
public void usingSignedExtension() throws Exception {
- ServerAccess.ProcessResult pr = server.executeJavawsHeadless(l, "/UsesSignedJarExtension.jnlp");
+ ProcessResult pr = server.executeJavawsHeadless(l, "/UsesSignedJarExtension.jnlp");
Assert.assertTrue("Stdout should contain " + jarOutput + " but did not", pr.stdout.contains(jarOutput));
}
@Bug(id = "PR1041")
@Test
public void mainJarInExtension() throws Exception {
- ServerAccess.ProcessResult pr = server.executeJavawsHeadless(l, "/UsesSignedJnlpJarAndSignedJarExtension.jnlp");
+ ProcessResult pr = server.executeJavawsHeadless(l, "/UsesSignedJnlpJarAndSignedJarExtension.jnlp");
Assert.assertTrue("Stdout should contain " + jarOutput + " but did not", pr.stdout.contains(jarOutput));
}
@Bug(id = "PR1042")
@Test
public void checkingSignedJnlpInExtension() throws Exception {
- ServerAccess.ProcessResult pr = server.executeJavawsHeadless(l, "/UsesSignedJnlpExtension.jnlp");
+ ProcessResult pr = server.executeJavawsHeadless(l, "/UsesSignedJnlpExtension.jnlp");
Assert.assertTrue("Stdout should contain " + signedJnlpException + " but did not", pr.stderr.contains(signedJnlpException));
}
}