1 30 31 package com.jgoodies.forms.layout; 32 33 import junit.framework.Test; 34 import junit.framework.TestSuite; 35 36 42 public final class AllFormsTests { 43 44 public static void main(String [] args) { 45 junit.textui.TestRunner.run(AllFormsTests.class); 46 } 47 48 public static Test suite() { 49 TestSuite suite = new TestSuite("Test for com.jgoodies.forms.layout"); 50 suite.addTest(new TestSuite(CellConstraintsTest.class)); 52 suite.addTest(new TestSuite(ColumnSpecTest.class)); 53 suite.addTest(new TestSuite(FormLayoutTest.class)); 54 suite.addTest(new TestSuite(FormLayoutGroupsTest.class)); 55 suite.addTest(new TestSuite(RowSpecTest.class)); 56 return suite; 58 } 59 } 60 | Popular Tags |