/* * 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.mapping; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; /** * * @author Amir */ public class MappingSuite extends TestCase { public MappingSuite(String testName) { super(testName); } public static Test suite() { TestSuite suite = new TestSuite("MappingSuite"); suite.addTest(MappingFactoryTest.suite()); suite.addTest(XbrlEntityFilteringTest.suite()); return suite; } @Override protected void setUp() throws Exception { super.setUp(); } @Override protected void tearDown() throws Exception { super.tearDown(); } }