001 // jademx - JADE management using JMX 002 // Copyright 2004-2005 Caboodle Networks, Inc. 003 // 004 // This library is free software; you can redistribute it and/or 005 // modify it under the terms of the GNU Lesser General Public 006 // License as published by the Free Software Foundation; either 007 // version 2.1 of the License, or (at your option) any later version. 008 // 009 // This library is distributed in the hope that it will be useful, 010 // but WITHOUT ANY WARRANTY; without even the implied warranty of 011 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 012 // Lesser General Public License for more details. 013 // 014 // You should have received a copy of the GNU Lesser General Public 015 // License along with this library; if not, write to the Free Software 016 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA 017 018 package jade.jademx.util; 019 020 import junit.framework.Test; 021 import junit.framework.TestSuite; 022 import jade.jademx.JadeMXSuiteTest; 023 import jade.jademx.util.iso8601.Iso8601SuiteTest; 024 025 /** 026 * test jade.test.util package 027 * @author David Bernstein, <a href="http://www.caboodlenetworks.com" 028 * >Caboodle Networks, Inc.</a> 029 */ 030 public class UtilSuiteTest extends TestSuite { 031 032 /** 033 * factory for creating suite of tests 034 * @return test suite 035 */ 036 public static Test suite() { 037 TestSuite suite = 038 new TestSuite( JadeMXSuiteTest.nameWithClass( UtilSuiteTest.class, 039 "jade.jademx.util package" ) ); 040 suite.addTest( ThrowableUtilTest.suite() ); 041 suite.addTest( MBeanUtilTest.suite() ); 042 suite.addTest( AclMsgCmpTest.suite() ); 043 suite.addTest( Iso8601SuiteTest.suite() ); 044 return suite; 045 } 046 047 }