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

Revision 206, 659 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 */
5package org;
6
7import junit.framework.Test;
8import junit.framework.TestCase;
9import junit.framework.TestSuite;
10import org.qcg.QcgSuite;
11
12/**
13 *
14 * @author bartek
15 */
16public class OrgSuite extends TestCase {
17       
18        public OrgSuite(String testName) {
19                super(testName);
20        }
21       
22        public static Test suite() {
23                TestSuite suite = new TestSuite("OrgSuite");
24                suite.addTest(QcgSuite.suite());
25                return suite;
26        }
27       
28        @Override
29        protected void setUp() throws Exception {
30                super.setUp();
31        }
32       
33        @Override
34        protected void tearDown() throws Exception {
35                super.tearDown();
36        }
37}
Note: See TracBrowser for help on using the repository browser.