1 7 package org.jdesktop.swing.data; 8 9 import junit.framework.Test; 10 import junit.framework.TestSuite; 11 12 13 19 public class AllDataModelTests { 20 public static Test suite() { 21 TestSuite suite = new TestSuite("JUnit Tests - MetaDataProviders"); 22 suite.addTest(new TestSuite(TableModelExtAdapterTest.class)); 23 suite.addTest(new TestSuite(DefaultDataModelTest.class)); 24 return suite; 25 } 26 27 } 28 | Popular Tags |