/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package edu.toronto.cs.xcurator.cli.config; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; /** * * @author Amir */ public class ConfigSuite extends TestCase { public ConfigSuite(String testName) { super(testName); } public static Test suite() { TestSuite suite = new TestSuite("ConfigSuite"); suite.addTest(RunConfigTest.suite()); return suite; } @Override protected void setUp() throws Exception { super.setUp(); } @Override protected void tearDown() throws Exception { super.tearDown(); } }