1 30 31 package com.jgoodies.looks.tests; 32 33 import junit.framework.Test; 34 import junit.framework.TestSuite; 35 36 42 public final class AllLooksTests { 43 44 public static void main(String [] args) { 45 junit.textui.TestRunner.run(AllLooksTests.class); 46 } 47 48 public static Test suite() { 49 TestSuite suite = new TestSuite("Test for com.jgoodies.looks"); 50 suite.addTest(new TestSuite(OptionsTest.class)); 52 return suite; 54 } 55 } 56 | Popular Tags |