| QuerySUITE.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package test.compliance.query;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* Query tests.
*
* @author <a href="mailto:AdrianBrock@HappeningTimes.com">Adrian Brock</a>.
*/
public class QuerySUITE
extends TestSuite
{
/**
* Run the tests
*
* @param args the arguments for the test
*/
public static void main(String[] args)
{
junit.textui.TestRunner.run(suite());
}
/**
* Get a list of tests.
*
* @return the tests
*/
public static Test suite()
{
TestSuite suite = new TestSuite("Query tests");
suite.addTest(new TestSuite(QueryMBeansObjectNameOnlyTestCase.class));
suite.addTest(new TestSuite(QueryTestCase.class));
return suite;
}
}
| QuerySUITE.java |