From f8fbef265329dc2e6e153d22c0a3317fdc0789e1 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 12 Dec 2014 10:23:05 +0200 Subject: java: remove more test skeleton code Change-Id: I37a82554de4f77be7e0fb3e42245a70b53beb83c Reviewed-on: https://gerrit.libreoffice.org/13476 Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- forms/qa/integration/forms/TestSkeleton.java | 71 ---------------------------- 1 file changed, 71 deletions(-) delete mode 100644 forms/qa/integration/forms/TestSkeleton.java (limited to 'forms/qa') 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(); - } - } -- cgit