summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2005-06-14 14:43:57 +0000
committerOliver Bolte <obo@openoffice.org>2005-06-14 14:43:57 +0000
commitdbad371bbfe6fd4dd0653cdd9c98f33750a16cc6 (patch)
tree3481faac668c3f7a7a06d6c35544215861d6a7e7
parent1287efd896f6cac91a7e9afe7da7ec11fac2aeab (diff)
INTEGRATION: CWS qadev23 (1.2.80); FILE MERGED
2005/06/02 15:33:02 cn 1.2.80.1: #i46788# logging enhanced
-rw-r--r--qadevOOo/tests/java/ifc/container/_XNameAccess.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/qadevOOo/tests/java/ifc/container/_XNameAccess.java b/qadevOOo/tests/java/ifc/container/_XNameAccess.java
index b7e06aae32fd..723de76740c2 100644
--- a/qadevOOo/tests/java/ifc/container/_XNameAccess.java
+++ b/qadevOOo/tests/java/ifc/container/_XNameAccess.java
@@ -2,9 +2,9 @@
*
* $RCSfile: _XNameAccess.java,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change:$Date: 2003-09-08 10:23:28 $
+ * last change:$Date: 2005-06-14 15:43:57 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -111,8 +111,8 @@ public class _XNameAccess extends MultiMethodTest {
String name = null;
if (Names.length != 0) {
- log.println("testing hasByName() with valid name");
name = Names[0];
+ log.println("testing hasByName() with valid name '" + name + "'");
loc_result = oObj.hasByName(name);
log.println("hasByName with valid names: " + loc_result);
result &= loc_result;
@@ -159,12 +159,13 @@ public class _XNameAccess extends MultiMethodTest {
String name = null;
if (Names.length != 0) {
- log.println("testing with valid name");
name = Names[0];
+ log.println("testing with valid name '" + name + "'");
try {
loc_result = (null != oObj.getByName(name));
} catch (Exception e) {
log.println("Exception! - FAILED");
+ log.println(e.toString());
loc_result = false;
}
log.println("getByName with valid name: " + loc_result);