summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/mod/_invadp
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-06-09 08:52:12 +0200
committerNoel Grandin <noel@peralex.com>2015-06-09 11:34:31 +0200
commit2a0dda3dfb37f0cb69842f7d569c253d82f53713 (patch)
tree7a762c2fa22651cefb68021250a3fad8811e0f06 /qadevOOo/tests/java/mod/_invadp
parent60f8dd78fa3f19e8bed867f7f5926fcf9a8d8e67 (diff)
remove some unnecessary exception wrapping in the Java tests
Modify createTestEnvironment so that it throws Exception. This is appropriate for unit testing. The wrapping adds no value and the calling method already has a catch(Exception) to handle anything. Change-Id: I430a414f63d2cbfc3b65ecfde0285509265e5192
Diffstat (limited to 'qadevOOo/tests/java/mod/_invadp')
-rw-r--r--qadevOOo/tests/java/mod/_invadp/InvocationAdapterFactory.java16
1 files changed, 5 insertions, 11 deletions
diff --git a/qadevOOo/tests/java/mod/_invadp/InvocationAdapterFactory.java b/qadevOOo/tests/java/mod/_invadp/InvocationAdapterFactory.java
index 3093183b529d..2817acce14bd 100644
--- a/qadevOOo/tests/java/mod/_invadp/InvocationAdapterFactory.java
+++ b/qadevOOo/tests/java/mod/_invadp/InvocationAdapterFactory.java
@@ -20,7 +20,6 @@ package mod._invadp;
import java.io.PrintWriter;
-import lib.StatusException;
import lib.TestCase;
import lib.TestEnvironment;
import lib.TestParameters;
@@ -49,19 +48,14 @@ public class InvocationAdapterFactory extends TestCase {
* <code>com.sun.star.script.InvocationAdapterFactory</code>.
*/
@Override
- protected TestEnvironment createTestEnvironment(TestParameters tParam, PrintWriter log) {
+ protected TestEnvironment createTestEnvironment(TestParameters tParam, PrintWriter log) throws Exception {
XMultiServiceFactory xMSF = tParam.getMSF();
- try {
- XInterface xInt = (XInterface)xMSF.createInstance(
- "com.sun.star.script.InvocationAdapterFactory");
+ XInterface xInt = (XInterface)xMSF.createInstance(
+ "com.sun.star.script.InvocationAdapterFactory");
- TestEnvironment tEnv = new TestEnvironment(xInt);
+ TestEnvironment tEnv = new TestEnvironment(xInt);
- return tEnv;
- } catch (com.sun.star.uno.Exception e) {
- e.printStackTrace(log);
- throw new StatusException("Unexpected exception", e);
- }
+ return tEnv;
}
}