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
.tempfile
;
20 import com
.sun
.star
.lang
.XMultiServiceFactory
;
21 import com
.sun
.star
.ucb
.XSimpleFileAccess
;
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 TempFileUnitTest
34 private XMultiServiceFactory m_xMSF
= null;
35 private XSimpleFileAccess m_xSFA
= null;
37 @Before public void before() {
39 if ( m_xMSF
== null ) {
40 fail ( "Cannot create service factory!" );
44 Object oSFA
= m_xMSF
.createInstance( "com.sun.star.ucb.SimpleFileAccess" );
45 m_xSFA
= UnoRuntime
.queryInterface( XSimpleFileAccess
.class, oSFA
);
49 fail ( "Cannot get simple file access! Exception: " + e
);
51 if ( m_xSFA
== null ) {
52 fail ( "Cannot get simple file access!" );
56 @After public void after() {
61 @Test public void ExecuteTest01() {
62 Test01 aTest
= new Test01( m_xMSF
, m_xSFA
);
63 assertTrue( "Test01 failed!", aTest
.test() );
66 @Test public void ExecuteTest02() {
67 Test02 aTest
= new Test02( m_xMSF
, m_xSFA
);
68 assertTrue( "Test02 failed!", aTest
.test() );
71 private XMultiServiceFactory
getMSF()
73 return UnoRuntime
.queryInterface(XMultiServiceFactory
.class, connection
.getComponentContext().getServiceManager());
76 // setup and close connections
77 @BeforeClass public static void setUpConnection() throws Exception
{
78 System
.out
.println("setUpConnection()");
82 @AfterClass public static void tearDownConnection()
83 throws InterruptedException
, com
.sun
.star
.uno
.Exception
85 System
.out
.println("tearDownConnection()");
86 connection
.tearDown();
89 private static final OfficeConnection connection
= new OfficeConnection();