tdf#150789 - FILEOPEN PPTX: fix text in SmartArt vertically off
[LibreOffice.git] / svl / qa / complex / passwordcontainer / PasswordContainerUnitTest.java
blob1de047a36998535a8e6c5facb43cf04b8345dabe
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 complex.passwordcontainer;
21 import com.sun.star.lang.XMultiServiceFactory;
22 import com.sun.star.uno.UnoRuntime;
24 import org.junit.After;
25 import org.junit.AfterClass;
26 import org.junit.Before;
27 import org.junit.BeforeClass;
28 import org.junit.Test;
29 import org.openoffice.test.OfficeConnection;
30 import static org.junit.Assert.*;
32 public class PasswordContainerUnitTest {
33 private XMultiServiceFactory m_xMSF = null;
35 @Before public void before() {
36 try {
37 m_xMSF = getMSF();
38 } catch (Exception e) {
39 fail ("Cannot create service factory!");
41 if (m_xMSF == null) {
42 fail ("Cannot create service factory!");
46 @After public void after() {
47 m_xMSF = null;
50 @Test public void ExecuteTest01()
52 PasswordContainerTest aTest = new Test01(m_xMSF);
53 assertTrue("Test01 failed!", aTest.test());
55 @Test public void ExecuteTest02() {
56 PasswordContainerTest aTest = new Test02(m_xMSF);
57 assertTrue("Test02 failed!", aTest.test());
59 @Test public void ExecuteTest03() {
60 PasswordContainerTest aTest = new Test03(m_xMSF);
61 assertTrue("Test03 failed!", aTest.test());
64 private XMultiServiceFactory getMSF()
66 return UnoRuntime.queryInterface(XMultiServiceFactory.class, connection.getComponentContext().getServiceManager());
69 // setup and close connections
70 @BeforeClass public static void setUpConnection() throws Exception {
71 System.out.println("setUpConnection()");
72 connection.setUp();
75 @AfterClass public static void tearDownConnection()
76 throws InterruptedException, com.sun.star.uno.Exception
78 System.out.println("tearDownConnection()");
79 connection.tearDown();
82 private static final OfficeConnection connection = new OfficeConnection();