comparison graal/com.oracle.max.base/src/com/sun/max/ide/TestCaseClassSet.java @ 4142:bc8527f3071c

Adjust code base to new level of warnings.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sun, 18 Dec 2011 05:24:06 +0100
parents e233f5660da4
children
comparison
equal deleted inserted replaced
4141:04d21be7a24f 4142:bc8527f3071c
36 /** 36 /**
37 * A utility for defining and refining a set of {@linkplain #isJUnitTestCaseClass(Class) valid} JUnit test case classes. 37 * A utility for defining and refining a set of {@linkplain #isJUnitTestCaseClass(Class) valid} JUnit test case classes.
38 */ 38 */
39 public class TestCaseClassSet extends LinkedHashSet<Class<? extends TestCase>> { 39 public class TestCaseClassSet extends LinkedHashSet<Class<? extends TestCase>> {
40 40
41 /**
42 *
43 */
44 private static final long serialVersionUID = -2202526415279951882L;
41 private final String defaultTestSuiteName; 45 private final String defaultTestSuiteName;
42 46
43 /** 47 /**
44 * Creates a set of classes whose {@linkplain #toTestSuite() derived} test suite will have a given name. 48 * Creates a set of classes whose {@linkplain #toTestSuite() derived} test suite will have a given name.
45 * 49 *