GPU-Calc: remove Alloc_Host_Ptr for clmem of NAN vector
[LibreOffice.git] / svl / qa / complex / passwordcontainer / PasswordContainerUnitTest.java
blobb4ebe1694dcc702e3b532f9ae21c0c2f6b762d5a
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 //// public String[] getTestMethodNames() {
36 //// return new String[] {
37 //// "ExecuteTest01",
38 //// "ExecuteTest02",
39 //// "ExecuteTest03"};
40 //// }
41 // public String getTestObjectName() {
42 // return "PasswordContainerUnitTest";
43 // }
45 @Before public void before() {
46 try {
47 m_xMSF = getMSF();
48 } catch (Exception e) {
49 fail ("Cannot create service factory!");
51 if (m_xMSF == null) {
52 fail ("Cannot create service factory!");
56 @After public void after() {
57 m_xMSF = null;
60 @Test public void ExecuteTest01()
62 PasswordContainerTest aTest = new Test01(m_xMSF);
63 assertTrue("Test01 failed!", aTest.test());
65 @Test public void ExecuteTest02() {
66 PasswordContainerTest aTest = new Test02(m_xMSF);
67 assertTrue("Test02 failed!", aTest.test());
69 @Test public void ExecuteTest03() {
70 PasswordContainerTest aTest = new Test03(m_xMSF);
71 assertTrue("Test03 failed!", aTest.test());
74 private XMultiServiceFactory getMSF()
76 final XMultiServiceFactory xMSF1 = UnoRuntime.queryInterface(XMultiServiceFactory.class, connection.getComponentContext().getServiceManager());
77 return xMSF1;
80 // setup and close connections
81 @BeforeClass public static void setUpConnection() throws Exception {
82 System.out.println("setUpConnection()");
83 connection.setUp();
86 @AfterClass public static void tearDownConnection()
87 throws InterruptedException, com.sun.star.uno.Exception
89 System.out.println("tearDownConnection()");
90 connection.tearDown();
93 private static final OfficeConnection connection = new OfficeConnection();