source: branches/irods-mockup/test/RootSuite.java @ 206

Revision 206, 645 bytes checked in by bartek, 11 years ago (diff)
  • Get ready to use KeyFS. New library used: jsch. Two other libraries may be used for conversion (if needed): bcprov and not-yet-commons-ssl.
  • Added testsuite skeleton
  • Improved and fixed a few minor things.
Line 
1/*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
5
6import junit.framework.Test;
7import junit.framework.TestCase;
8import junit.framework.TestSuite;
9import org.OrgSuite;
10
11/**
12 *
13 * @author bartek
14 */
15public class RootSuite extends TestCase {
16       
17        public RootSuite(String testName) {
18                super(testName);
19        }
20       
21        public static Test suite() {
22                TestSuite suite = new TestSuite("RootSuite");
23                suite.addTest(OrgSuite.suite());
24                return suite;
25        }
26       
27        @Override
28        protected void setUp() throws Exception {
29                super.setUp();
30        }
31       
32        @Override
33        protected void tearDown() throws Exception {
34                super.tearDown();
35        }
36}
Note: See TracBrowser for help on using the repository browser.