diff options
author | Rüdiger Timm <rt@openoffice.org> | 2003-09-08 09:56:30 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2003-09-08 09:56:30 +0000 |
commit | dec3cb2fecf9f3fab93f9d5edb9a1fe8c2dc4f8f (patch) | |
tree | 7ca9d34ea9848d59cb63bde583aa849392b3f977 /qadevOOo/tests/java/ifc/sdbcx | |
parent | 895ee213b497c28e33e51bded6dbaaeb369d427e (diff) |
INTEGRATION: CWS qadev11 (1.1.28); FILE MERGED
2003/09/03 14:58:57 sw 1.1.28.1: #112049#
Diffstat (limited to 'qadevOOo/tests/java/ifc/sdbcx')
-rw-r--r-- | qadevOOo/tests/java/ifc/sdbcx/_XDropCatalog.java | 8 | ||||
-rw-r--r-- | qadevOOo/tests/java/ifc/sdbcx/_XRowLocate.java | 9 |
2 files changed, 9 insertions, 8 deletions
diff --git a/qadevOOo/tests/java/ifc/sdbcx/_XDropCatalog.java b/qadevOOo/tests/java/ifc/sdbcx/_XDropCatalog.java index 5913813153de..4cdb1ae5dfce 100644 --- a/qadevOOo/tests/java/ifc/sdbcx/_XDropCatalog.java +++ b/qadevOOo/tests/java/ifc/sdbcx/_XDropCatalog.java @@ -2,9 +2,9 @@ * * $RCSfile: _XDropCatalog.java,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change:$Date: 2003-01-27 18:12:04 $ + * last change:$Date: 2003-09-08 10:56:20 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -62,6 +62,8 @@ package ifc.sdbcx; import lib.MultiMethodTest; +import lib.Status; + import com.sun.star.sdbcx.XDropCatalog; /** @@ -77,6 +79,6 @@ public class _XDropCatalog extends MultiMethodTest { public XDropCatalog oObj = null; public void _dropCatalog() { - tRes.tested("dropCatalog()", tRes.skipped(false)); + tRes.tested("dropCatalog()", Status.skipped(false)); } }
\ No newline at end of file diff --git a/qadevOOo/tests/java/ifc/sdbcx/_XRowLocate.java b/qadevOOo/tests/java/ifc/sdbcx/_XRowLocate.java index 8b5020555a8f..7dc97631f795 100644 --- a/qadevOOo/tests/java/ifc/sdbcx/_XRowLocate.java +++ b/qadevOOo/tests/java/ifc/sdbcx/_XRowLocate.java @@ -2,9 +2,9 @@ * * $RCSfile: _XRowLocate.java,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change:$Date: 2003-01-27 18:12:03 $ + * last change:$Date: 2003-09-08 10:56:30 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -61,9 +61,10 @@ package ifc.sdbcx; +import lib.MultiMethodTest; + import com.sun.star.sdbc.SQLException; import com.sun.star.sdbcx.XRowLocate; -import lib.MultiMethodTest; /** * Testing <code>com.sun.star.sdbcx.XRowLocate</code> @@ -98,13 +99,11 @@ public class _XRowLocate extends MultiMethodTest { * <code>XNameAccess</code> object, FAILED otherwise. */ public void _getBookmark() { - boolean result = true ; try { bookmark1 = oObj.getBookmark() ; } catch (SQLException e) { log.println("Exception occured :" + e) ; - result = false ; } tRes.tested("getBookmark()", bookmark1 != null) ; |