summaryrefslogtreecommitdiff
path: root/forms
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 /forms
parent214ba32cd4d20691c8ba16b94a7ae621575839f4 (diff)
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 'forms')
-rw-r--r--forms/qa/integration/forms/TestSkeleton.java71
1 files changed, 0 insertions, 71 deletions
diff --git a/forms/qa/integration/forms/TestSkeleton.java b/forms/qa/integration/forms/TestSkeleton.java
deleted file mode 100644
index d0a9e0980ba1..000000000000
--- 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();
- }
- }