Test.java (15ab5183) Test.java (6795508b)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 10 unchanged lines hidden (view full) ---

19 *
20 *************************************************************/
21
22
23
24package org.openoffice.sc.qa.unoapi;
25
26import org.openoffice.Runner;
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 10 unchanged lines hidden (view full) ---

19 *
20 *************************************************************/
21
22
23
24package org.openoffice.sc.qa.unoapi;
25
26import org.openoffice.Runner;
27import org.openoffice.test.Argument;
27import org.openoffice.test.OfficeConnection;
28import static org.junit.Assert.*;
29
30public final class Test {
31 @org.junit.Before public void setUp() throws Exception {
32 connection.setUp();
33 }
34
35 @org.junit.After public void tearDown()
36 throws InterruptedException, com.sun.star.uno.Exception
37 {
38 connection.tearDown();
39 }
40
41 @org.junit.Test public void test() {
42 assertTrue(
43 Runner.run(
28import org.openoffice.test.OfficeConnection;
29import static org.junit.Assert.*;
30
31public final class Test {
32 @org.junit.Before public void setUp() throws Exception {
33 connection.setUp();
34 }
35
36 @org.junit.After public void tearDown()
37 throws InterruptedException, com.sun.star.uno.Exception
38 {
39 connection.tearDown();
40 }
41
42 @org.junit.Test public void test() {
43 assertTrue(
44 Runner.run(
44 "-sce", "sc.sce", "-xcl", "knownissues.xcl", "-tdoc",
45 "testdocuments", "-cs", connection.getDescription()));
45 "-sce", Argument.get("sce"), "-xcl", Argument.get("xcl"), "-tdoc",
46 Argument.get("tdoc"), "-cs", connection.getDescription()));
46 }
47
48 private final OfficeConnection connection = new OfficeConnection();
49}
47 }
48
49 private final OfficeConnection connection = new OfficeConnection();
50}