bump product version to 5.0.4.1
[LibreOffice.git] / qadevOOo / tests / java / mod / _sw / SwXModule.java
blob45165e99e9784f1992819374ed5ffc4ff81d878d
1 /*
2 * This file is part of the LibreOffice project.
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 * This file incorporates work covered by the following license notice:
10 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * contributor license agreements. See the NOTICE file distributed
12 * with this work for additional information regarding copyright
13 * ownership. The ASF licenses this file to you under the Apache
14 * License, Version 2.0 (the "License"); you may not use this file
15 * except in compliance with the License. You may obtain a copy of
16 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 package mod._sw;
21 import java.io.PrintWriter;
23 import lib.StatusException;
24 import lib.TestCase;
25 import lib.TestEnvironment;
26 import lib.TestParameters;
28 import com.sun.star.uno.XInterface;
30 /**
31 * Test for object which is represented by service
32 * <code>com.sun.star.text.GlobalSettings</code>. <p>
33 * Object implements the following interfaces :
34 * <ul>
35 * <li> <code>com::sun::star::view::XPrintSettingsSupplier</code></li>
36 * <li> <code>com::sun::star::view::XViewSettingsSupplier</code></li>
37 * </ul> <p>
38 * This object test <b> is NOT </b> designed to be run in several
39 * threads concurently.
40 * @see com.sun.star.view.XPrintSettingsSupplier
41 * @see com.sun.star.view.XViewSettingsSupplier
42 * @see ifc.view._XPrintSettingsSupplier
43 * @see ifc.view._XViewSettingsSupplier
45 public class SwXModule extends TestCase {
47 /**
48 * Creating a Testenvironment for the interfaces to be tested.
49 * Creates an instance of the service
50 * <code>com.sun.star.text.GlobalSettings</code>.
52 @Override
53 public TestEnvironment createTestEnvironment(
54 TestParameters Param, PrintWriter log ) throws StatusException {
55 XInterface oObj = null;
56 Object oInterface = null;
58 try {
59 oInterface = Param.getMSF().createInstance(
60 "com.sun.star.text.GlobalSettings" );
61 } catch ( com.sun.star.uno.Exception e ) {
62 log.println("Service not available" );
63 throw new StatusException("Service not available", e) ;
66 if (oInterface == null) {
67 log.println("Service wasn't created") ;
68 throw new StatusException("Service wasn't created",
69 new NullPointerException()) ;
72 oObj = (XInterface) oInterface;
74 log.println( " creating a new environment for object" );
75 TestEnvironment tEnv = new TestEnvironment( oObj );
77 return tEnv;
78 } // finish method getTestEnvironment
80 } // finish class SwXModule