Branch libreoffice-5-0-4
[LibreOffice.git] / qadevOOo / tests / java / mod / _sfx / DocumentTemplates.java
blobf2a65f42f5bcd99263cf254e1e2eaf7a2a417a13
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.StatusException;
24 import lib.TestCase;
25 import lib.TestEnvironment;
26 import lib.TestParameters;
28 import com.sun.star.frame.XStorable;
29 import com.sun.star.lang.XMultiServiceFactory;
30 import com.sun.star.text.XTextDocument;
31 import com.sun.star.uno.UnoRuntime;
32 import com.sun.star.uno.XInterface;
34 /**
35 * Test for object which is represented by service
36 * <code>com.sun.star.frame.DocumentTemplates</code>. <p>
38 * Object implements the following interfaces :
39 * <ul>
40 * <li> <code>com::sun::star::frame::XDocumentTemplates</code></li>
41 * </ul> <p>
44 public class DocumentTemplates extends TestCase {
46 XTextDocument xTextDoc;
48 @Override
49 protected void initialize( TestParameters tParam, PrintWriter log ) {
50 String aURL=util.utils.getFullTestURL("report2.stw");
51 xTextDoc = util.WriterTools.loadTextDoc(tParam.getMSF(),aURL);
54 @Override
55 protected void cleanup( TestParameters tParam, PrintWriter log ) {
56 log.println( " disposing xTextDoc " );
57 xTextDoc.dispose();
60 /**
61 * Creating a Testenvironment for the interfaces to be tested.
62 * Creates an instance of the service
63 * <code>com.sun.star.frame.DocumentTemplates</code>.
65 @Override
66 protected TestEnvironment createTestEnvironment
67 (TestParameters tParam, PrintWriter log) {
69 XMultiServiceFactory xMSF = tParam.getMSF();
70 XInterface oObj = null;
71 XStorable store = null;
73 try {
74 oObj = (XInterface)xMSF.createInstance
75 ("com.sun.star.frame.DocumentTemplates");
76 store = UnoRuntime.queryInterface
77 (XStorable.class,xTextDoc);
78 } catch (com.sun.star.uno.Exception e) {
79 e.printStackTrace(log);
80 throw new StatusException("Unexpected exception", e);
83 String Iname = util.utils.getImplName(oObj);
84 log.println("Implementation Name: "+Iname);
85 TestEnvironment tEnv = new TestEnvironment(oObj);
86 tEnv.addObjRelation("Store",store);
87 return tEnv;
90 } // finish class TestCase