summaryrefslogtreecommitdiff
path: root/qadevOOo
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2008-06-13 11:43:21 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2008-06-13 11:43:21 +0000
commit2c94aee3cd18b092d8cb5ef1c1956ae84f7ff46e (patch)
treea91618dce9dc6a8461fab117de7efd84986ac3ba /qadevOOo
parentc042ec0ef44c881139bd4eb3154ba8478202b105 (diff)
INTEGRATION: CWS qadev32 (1.14.2); FILE MERGED
2008/04/17 11:40:17 cn 1.14.2.2: RESYNC: (1.14-1.15); FILE MERGED 2008/03/24 21:13:22 cn 1.14.2.1: #i87217# bugfix: print current method name
Diffstat (limited to 'qadevOOo')
-rw-r--r--qadevOOo/runner/complexlib/ComplexTestCase.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/qadevOOo/runner/complexlib/ComplexTestCase.java b/qadevOOo/runner/complexlib/ComplexTestCase.java
index 19feac5df0a4..2a7c54bdd848 100644
--- a/qadevOOo/runner/complexlib/ComplexTestCase.java
+++ b/qadevOOo/runner/complexlib/ComplexTestCase.java
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: ComplexTestCase.java,v $
- * $Revision: 1.15 $
+ * $Revision: 1.16 $
*
* This file is part of OpenOffice.org.
*
@@ -133,6 +133,7 @@ public abstract class ComplexTestCase implements ComplexTest {
testMethod = this.getClass().getMethod(entryName, new Class[]{String.class });
} else {
testMethod = this.getClass().getMethod(entryName, new Class[]{});
+ mTestMethodName = entryName;
}
MethodThread th = new MethodThread(testMethod, this, parameter, (java.io.PrintWriter) log);