1   package net.sourceforge.jpotpourri.util;
2   
3   import junit.framework.Test;
4   import junit.framework.TestCase;
5   import junit.framework.TestSuite;
6   
7   /**
8    * @author christoph_pickl@users.sourceforge.net
9    */
10  public final class UtilTestSuite extends TestCase {
11  	
12  	public UtilTestSuite() {
13  		super("Util Test Suite");
14  	}
15  
16  	public static Test suite() {
17  		final TestSuite suite = new TestSuite();
18  		
19  		suite.addTestSuite(CloseUtilTest.class);
20  		suite.addTestSuite(CollectionUtilTest.class);
21  		
22  		return suite;
23  	}
24  
25  	public void testApp() {
26  		assertTrue(true);
27  	}
28  }