1 21 22 package org.dbunit.dataset.csv; 23 24 import junit.framework.Test; 25 import junit.framework.TestSuite; 26 27 36 public class AllTests 37 { 38 public static Test suite() 39 { 40 TestSuite suite = new TestSuite(); 41 suite.addTest(new TestSuite(CsvParserTest.class)); 42 suite.addTest(new TestSuite(CsvProducerTest.class)); 43 return suite; 44 } 45 } 46 | Popular Tags |