From 2a0dda3dfb37f0cb69842f7d569c253d82f53713 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 9 Jun 2015 08:52:12 +0200 Subject: 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 --- qadevOOo/runner/lib/TestCase.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'qadevOOo/runner') diff --git a/qadevOOo/runner/lib/TestCase.java b/qadevOOo/runner/lib/TestCase.java index ebe175d485f5..3a3d7e9c9467 100644 --- a/qadevOOo/runner/lib/TestCase.java +++ b/qadevOOo/runner/lib/TestCase.java @@ -157,7 +157,7 @@ public abstract class TestCase { * @see #getTestEnvironment */ protected abstract TestEnvironment createTestEnvironment( - TestParameters tParam, PrintWriter log ); + TestParameters tParam, PrintWriter log ) throws Exception; /** * @return the name of the object -- cgit