1 package org.kuali.ole.docstore.discovery;
2
3 import junit.framework.Test;
4 import junit.framework.TestCase;
5 import junit.framework.TestSuite;
6
7 /**
8 * Unit test for simple App.
9 */
10 public class AppTest
11 extends TestCase {
12 /**
13 * Create the test case
14 *
15 * @param testName name of the test case
16 */
17 public AppTest(String testName) {
18 super(testName);
19 }
20
21 /**
22 * @return the suite of tests being tested
23 */
24 public static Test suite() {
25 return new TestSuite(AppTest.class);
26 }
27
28 /**
29 * Rigourous Test :-)
30 */
31 public void testApp() {
32 assertTrue(true);
33 }
34 }