sw: clean up Start/EndAction in SwViewShell hierarchy
[LibreOffice.git] / sot / qa / complex / olesimplestorage / OLESimpleStorageUnitTest.java
blob4c96ce1f654ed383fee4acecb5c985e2ac652eae
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 .
18 package complex.olesimplestorage;
20 import com.sun.star.lang.XMultiServiceFactory;
21 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 /* Document.
35 public class OLESimpleStorageUnitTest
37 private XMultiServiceFactory m_xMSF = null;
39 @Before public void before () {
40 System.out.println("before()");
41 try {
42 m_xMSF = getMSF();
43 } catch ( Exception e ){
44 fail( "Cannot create service factory!" );
46 if ( m_xMSF == null ) {
47 fail( "Cannot create service factory!" );
51 @After public void after () {
52 System.out.println("after()");
53 m_xMSF = null;
56 @Test public void ExecuteTest01() {
57 System.out.println("ExecuteTest01()");
58 OLESimpleStorageTest aTest = new Test01( m_xMSF );
59 assertTrue( "Test01 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();