summaryrefslogtreecommitdiff
path: root/extensions/qa
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2006-03-31 11:18:14 +0000
committerVladimir Glazounov <vg@openoffice.org>2006-03-31 11:18:14 +0000
commit1d12b94d9c3b1d69e8bf8ca758cc0482978d926d (patch)
tree45d9bffa99b88390480afb2183d57fe6b9bb777c /extensions/qa
parent72fd0d91fdbb5834df71d6e2dd81c09e0adaf39d (diff)
INTEGRATION: CWS dba203b (1.1.2); FILE ADDED
2006/03/23 10:16:06 fs 1.1.2.1: test skeleton
Diffstat (limited to 'extensions/qa')
-rw-r--r--extensions/qa/integration/extensions/TestSkeleton.java79
1 files changed, 79 insertions, 0 deletions
diff --git a/extensions/qa/integration/extensions/TestSkeleton.java b/extensions/qa/integration/extensions/TestSkeleton.java
new file mode 100644
index 000000000000..907063f56e6c
--- /dev/null
+++ b/extensions/qa/integration/extensions/TestSkeleton.java
@@ -0,0 +1,79 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: TestSkeleton.java,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: vg $ $Date: 2006-03-31 12:18:14 $
+ *
+ * The Contents of this file are made available subject to
+ * the terms of GNU Lesser General Public License Version 2.1.
+ *
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2005 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ ************************************************************************/
+
+package integration.extensions;
+
+import com.sun.star.uno.UnoRuntime;
+import com.sun.star.lang.XMultiServiceFactory;
+
+public class TestSkeleton extends complexlib.ComplexTestCase
+{
+ private XMultiServiceFactory m_orb;
+
+ /** Creates a new instance of ValueBinding */
+ public TestSkeleton()
+ {
+ }
+
+ /* ------------------------------------------------------------------ */
+ public String[] getTestMethodNames()
+ {
+ return new String[] {
+ "checkSomething"
+ };
+ }
+
+ /* ------------------------------------------------------------------ */
+ public String getTestObjectName()
+ {
+ return "Test Skeleton";
+ }
+
+ /* ------------------------------------------------------------------ */
+ public void before() throws com.sun.star.uno.Exception, java.lang.Exception
+ {
+ m_orb = (XMultiServiceFactory)param.getMSF();
+ }
+
+ /* ------------------------------------------------------------------ */
+ public void after() throws com.sun.star.uno.Exception, java.lang.Exception
+ {
+ }
+
+ /* ------------------------------------------------------------------ */
+ public void checkSomething() throws com.sun.star.uno.Exception, java.lang.Exception
+ {
+ }
+}