Kaydet (Commit) f8fbef26 authored tarafından Noel Grandin's avatar Noel Grandin Kaydeden (comit) Noel Grandin

java: remove more test skeleton code

Change-Id: I37a82554de4f77be7e0fb3e42245a70b53beb83c
Reviewed-on: https://gerrit.libreoffice.org/13476Reviewed-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
Tested-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
üst 214ba32c
/*
* 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
{
}
}
/*
* 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();
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment