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 .
18 package mod
._qadevOOo
;
20 import com
.sun
.star
.uno
.XInterface
;
22 import java
.io
.PrintWriter
;
24 import lib
.StatusException
;
26 import lib
.TestEnvironment
;
27 import lib
.TestParameters
;
29 import util
.SOfficeFactory
;
31 import com
.sun
.star
.text
.XSimpleText
;
32 import com
.sun
.star
.text
.XTextCursor
;
33 import com
.sun
.star
.text
.XTextDocument
;
35 public class SelfTest
extends TestCase
37 private XTextDocument xTextDoc
= null;
40 protected void initialize(TestParameters tParam
, PrintWriter log
)
42 // get a soffice factory object
43 SOfficeFactory SOF
= SOfficeFactory
.getFactory(tParam
.getMSF());
45 log
.println("initialize the selftest");
48 log
.println("creating a textdocument");
49 xTextDoc
= SOF
.createTextDoc(null);
51 catch (com
.sun
.star
.uno
.Exception e
)
53 e
.printStackTrace(log
);
54 throw new StatusException("Couldn't create document", e
);
59 * Disposes text document.
62 protected void cleanup(TestParameters tParam
, PrintWriter log
)
64 log
.println(" cleanup selftest");
65 util
.DesktopTools
.closeDoc(xTextDoc
);
69 protected TestEnvironment
createTestEnvironment(TestParameters tParam
, PrintWriter log
)
71 XInterface oObj
= null;
72 log
.println("creating a test environment");
74 // get the bodytext of textdocument here
75 log
.println("getting the TextCursor");
77 final XSimpleText aText
= xTextDoc
.getText();
78 final XTextCursor textCursor
= aText
.createTextCursor();
81 TestEnvironment tEnv
= new TestEnvironment(oObj
);