diff options
author | Noel Grandin <noel@peralex.com> | 2015-06-09 08:52:12 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-06-09 11:34:31 +0200 |
commit | 2a0dda3dfb37f0cb69842f7d569c253d82f53713 (patch) | |
tree | 7a762c2fa22651cefb68021250a3fad8811e0f06 /qadevOOo/runner/lib/TestCase.java | |
parent | 60f8dd78fa3f19e8bed867f7f5926fcf9a8d8e67 (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/runner/lib/TestCase.java')
-rw-r--r-- | qadevOOo/runner/lib/TestCase.java | 2 |
1 files changed, 1 insertions, 1 deletions
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 |