FileDocCategorySizeDatePackage
Tests.javaAPI DocGlassfish v2 API7128Fri May 04 22:23:50 BST 2007com.sun.enterprise.management

Tests

public class Tests extends Object
The place to put list any new test; the official list of tests. The file amxtest.classes is also used, but since it may be inadvertantly modified, this is the official list of tests.

Fields Summary
private static final Class[]
TestClasses
Constructors Summary
private Tests()

Methods Summary
public static java.util.ListgetTestClasses()

	
		  
	
	
	    final List<Class<junit.framework.TestCase>> classes   =
	        new ArrayList<Class<junit.framework.TestCase>>();
	    
	    for( int i = 0; i < TestClasses.length; ++i )
	    {
	        final Class<junit.framework.TestCase> testClass   = TestClasses[i];
	        
	        classes.add( testClass );
	    }

		return( classes );