summaryrefslogtreecommitdiffstats
path: root/extensions/qa
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-12-12 10:23:05 +0200
committerNoel Grandin <noelgrandin@gmail.com>2014-12-15 12:36:12 +0000
commitf8fbef265329dc2e6e153d22c0a3317fdc0789e1 (patch)
treeda5ae7ba4434b65924a0cd8ed3544d07bd8a2062 /extensions/qa
parentvcl: Fix crash when requesting coordonnates for empty texture (diff)
downloadcore-f8fbef265329dc2e6e153d22c0a3317fdc0789e1.tar.gz
core-f8fbef265329dc2e6e153d22c0a3317fdc0789e1.zip
java: remove more test skeleton code
Change-Id: I37a82554de4f77be7e0fb3e42245a70b53beb83c Reviewed-on: https://gerrit.libreoffice.org/13476 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'extensions/qa')
-rw-r--r--extensions/qa/integration/extensions/TestSkeleton.java58
1 files changed, 0 insertions, 58 deletions
diff --git a/extensions/qa/integration/extensions/TestSkeleton.java b/extensions/qa/integration/extensions/TestSkeleton.java
deleted file mode 100644
index ca77d206b3e0..000000000000
--- 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
- {
- }
-}