1 /*
2 * Copyright (c) 2003
3 * Information Desire GmbH
4 * All rights reserved.
5 */
6 package com.infodesire.infobit;
7
8 import junit.framework.TestCase;
9 import junit.framework.TestSuite;
10
11 import com.infodesire.infobit.app.Export;
12 /***
13 * run export application
14 *
15 * @author konstantin
16 * @created September 16, 2003
17 * @version $Revision: 1.1 $
18 */
19 public class ExportAppTest extends InfobitTestBase {
20
21 /***
22 * Constructor for the ExportAppTest object
23 *
24 * @param name Description of Parameter
25 */
26 public ExportAppTest(String name) {
27 super(name);
28 }
29
30
31 /***
32 * A unit test for JUnit
33 *
34 * @exception Exception Description of Exception
35 */
36 public void testExport() throws Exception {
37 Export.main(null);
38 }
39 }
40
This page was automatically generated by Maven