[Libreoffice-commits] core.git: extensions/qa forms/qa

Noel Grandin noel at peralex.com
Mon Dec 15 04:36:49 PST 2014


 extensions/qa/integration/extensions/TestSkeleton.java |   58 -------------
 forms/qa/integration/forms/TestSkeleton.java           |   71 -----------------
 2 files changed, 129 deletions(-)

New commits:
commit f8fbef265329dc2e6e153d22c0a3317fdc0789e1
Author: Noel Grandin <noel at peralex.com>
Date:   Fri Dec 12 10:23:05 2014 +0200

    java: remove more test skeleton code
    
    Change-Id: I37a82554de4f77be7e0fb3e42245a70b53beb83c
    Reviewed-on: https://gerrit.libreoffice.org/13476
    Reviewed-by: Noel Grandin <noelgrandin at gmail.com>
    Tested-by: Noel Grandin <noelgrandin at gmail.com>

diff --git a/extensions/qa/integration/extensions/TestSkeleton.java b/extensions/qa/integration/extensions/TestSkeleton.java
deleted file mode 100644
index ca77d20..0000000
--- a/extensions/qa/integration/extensions/TestSkeleton.java
+++ /dev/null
@@ -1,58 +0,0 @@
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- *   Licensed to the Apache Software Foundation (ASF) under one or more
- *   contributor license agreements. See the NOTICE file distributed
- *   with this work for additional information regarding copyright
- *   ownership. The ASF licenses this file to you under the Apache
- *   License, Version 2.0 (the "License"); you may not use this file
- *   except in compliance with the License. You may obtain a copy of
- *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-package integration.extensions;
-
-import com.sun.star.lang.XMultiServiceFactory;
-
-public class TestSkeleton extends complexlib.ComplexTestCase
-{
-    private XMultiServiceFactory    m_orb;
-
-    /* ------------------------------------------------------------------ */
-    @Override
-    public String[] getTestMethodNames()
-    {
-        return new String[] {
-            "checkSomething"
-        };
-    }
-
-    /* ------------------------------------------------------------------ */
-    @Override
-    public String getTestObjectName()
-    {
-        return "Test Skeleton";
-    }
-
-    /* ------------------------------------------------------------------ */
-    public void before() throws java.lang.Exception
-    {
-        m_orb = param.getMSF();
-    }
-
-    /* ------------------------------------------------------------------ */
-    public void after() throws java.lang.Exception
-    {
-    }
-
-    /* ------------------------------------------------------------------ */
-    public void checkSomething() throws com.sun.star.uno.Exception, java.lang.Exception
-    {
-    }
-}
diff --git a/forms/qa/integration/forms/TestSkeleton.java b/forms/qa/integration/forms/TestSkeleton.java
deleted file mode 100644
index d0a9e09..0000000
--- a/forms/qa/integration/forms/TestSkeleton.java
+++ /dev/null
@@ -1,71 +0,0 @@
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- *   Licensed to the Apache Software Foundation (ASF) under one or more
- *   contributor license agreements. See the NOTICE file distributed
- *   with this work for additional information regarding copyright
- *   ownership. The ASF licenses this file to you under the Apache
- *   License, Version 2.0 (the "License"); you may not use this file
- *   except in compliance with the License. You may obtain a copy of
- *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-package integration.forms;
-
-import com.sun.star.uno.Exception;
-
-public class TestSkeleton extends TestCase
-{
-    /** Creates a new instance of TestSkeleton */
-    public TestSkeleton()
-    {
-        super( DocumentType.WRITER );
-    }
-
-    /* ------------------------------------------------------------------ */
-    @Override
-    public String[] getTestMethodNames()
-    {
-        return new String[] {
-            "checkTestSkeleton"
-        };
-    }
-
-    /* ------------------------------------------------------------------ */
-    @Override
-    public String getTestObjectName()
-    {
-        return "Test Skeleton";
-    }
-
-    /* ------------------------------------------------------------------ */
-    public void checkTestSkeleton() throws com.sun.star.uno.Exception, java.lang.Exception
-    {
-    }
-
-    /* ------------------------------------------------------------------ */
-    @Override
-    public void before() throws Exception, java.lang.Exception
-    {
-        super.before();
-    }
-
-    /* ------------------------------------------------------------------ */
-    @Override
-    public void after() throws Exception, java.lang.Exception
-    {
-        super.before();
-    }
-
-    /* ------------------------------------------------------------------ */
-    @Override
-    protected void prepareDocument() throws com.sun.star.uno.Exception, java.lang.Exception
-    {
-        super.prepareDocument();
-    }
- }


More information about the Libreoffice-commits mailing list