tdf#130857 qt weld: Introduce QtInstanceScrolledWindow
[LibreOffice.git] / qadevOOo / tests / java / mod / _sfx / DocumentTemplates.java
blob835e5c6430cb3b2455b7db98f44c491bb96fd2a1
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._sfx;
21 import java.io.PrintWriter;
23 import lib.TestCase;
24 import lib.TestEnvironment;
25 import lib.TestParameters;
27 import com.sun.star.frame.XStorable;
28 import com.sun.star.lang.XMultiServiceFactory;
29 import com.sun.star.text.XTextDocument;
30 import com.sun.star.uno.UnoRuntime;
31 import com.sun.star.uno.XInterface;
33 /**
34 * Test for object which is represented by service
35 * <code>com.sun.star.frame.DocumentTemplates</code>. <p>
37 * Object implements the following interfaces :
38 * <ul>
39 * <li> <code>com::sun::star::frame::XDocumentTemplates</code></li>
40 * </ul> <p>
43 public class DocumentTemplates extends TestCase {
45 XTextDocument xTextDoc;
47 @Override
48 protected void initialize( TestParameters tParam, PrintWriter log ) throws Exception {
49 String aURL=util.utils.getFullTestURL("report2.stw");
50 xTextDoc = util.WriterTools.loadTextDoc(tParam.getMSF(),aURL);
53 @Override
54 protected void cleanup( TestParameters tParam, PrintWriter log ) {
55 log.println( " disposing xTextDoc " );
56 xTextDoc.dispose();
59 /**
60 * Creating a TestEnvironment for the interfaces to be tested.
61 * Creates an instance of the service
62 * <code>com.sun.star.frame.DocumentTemplates</code>.
64 @Override
65 protected TestEnvironment createTestEnvironment
66 (TestParameters tParam, PrintWriter log) throws Exception {
68 XMultiServiceFactory xMSF = tParam.getMSF();
69 XInterface oObj = null;
70 XStorable store = null;
72 oObj = (XInterface)xMSF.createInstance
73 ("com.sun.star.frame.DocumentTemplates");
74 store = UnoRuntime.queryInterface
75 (XStorable.class,xTextDoc);
77 String Iname = util.utils.getImplName(oObj);
78 log.println("Implementation Name: "+Iname);
79 TestEnvironment tEnv = new TestEnvironment(oObj);
80 tEnv.addObjRelation("Store",store);
81 return tEnv;
84 } // finish class TestCase