blob: 17c3763a557f630619c373601793c13c6e29c3d8 [file] [log] [blame]
package org.eclipse.jst.jsf.metadata.tests;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.jst.jsf.metadata.tests.annotations.AnnotationHelperTestCases;
import org.eclipse.jst.jsf.metadata.tests.annotations.AnnotationMapTestCases;
import org.eclipse.jst.jsf.metadata.tests.annotations.CaseInsensitiveAnnotationsTestCases;
import org.eclipse.jst.jsf.metadata.tests.annotations.DuplicateAnnotationsTestCases;
import org.eclipse.jst.jsf.metadata.tests.annotations.NegativeAnnotationFileTestCases;
import org.eclipse.jst.jsf.metadata.tests.metadataprocessing.AttributeValueRuntimeTypeExtensionsTests;
import org.eclipse.jst.jsf.metadata.tests.metadataprocessing.AttributeValueRuntimeTypeFactoryTests;
import org.eclipse.jst.jsf.metadata.tests.metadataprocessing.AttributeValueRuntimeTypesRegistryTests;
import org.eclipse.jst.jsf.metadata.tests.metadataprocessing.MetaDataProcessorsFactoryTests;
import org.eclipse.jst.jsf.metadata.tests.taglibprocessing.BooleanTypeTest;
import org.eclipse.jst.jsf.metadata.tests.taglibprocessing.DoubleTypeTest;
import org.eclipse.jst.jsf.metadata.tests.taglibprocessing.IntegerTypeTest;
import org.eclipse.jst.jsf.metadata.tests.taglibprocessing.JavaClassTypeTest;
import org.eclipse.jst.jsf.metadata.tests.taglibprocessing.LongTypeTest;
import org.eclipse.jst.jsf.metadata.tests.taglibprocessing.StringTypeTest;
public class AllTests {
public static Test suite() {
TestSuite suite = new TestSuite(
"Test for org.eclipse.jst.jsf.metadata.tests");
//$JUnit-BEGIN$
//annotations
suite.addTestSuite(AnnotationMapTestCases.class);
suite.addTestSuite(AnnotationHelperTestCases.class);
suite.addTestSuite(DuplicateAnnotationsTestCases.class);
suite.addTestSuite(CaseInsensitiveAnnotationsTestCases.class);
suite.addTestSuite(NegativeAnnotationFileTestCases.class);
//metadataprocessing
suite.addTestSuite(MetaDataProcessorsFactoryTests.class);
suite.addTestSuite(AttributeValueRuntimeTypeExtensionsTests.class);
suite.addTestSuite(AttributeValueRuntimeTypesRegistryTests.class);
suite.addTestSuite(AttributeValueRuntimeTypeFactoryTests.class);
//taglib processing
suite.addTestSuite(StringTypeTest.class);
suite.addTestSuite(BooleanTypeTest.class);
suite.addTestSuite(IntegerTypeTest.class);
suite.addTestSuite(LongTypeTest.class);
suite.addTestSuite(DoubleTypeTest.class);
suite.addTestSuite(JavaClassTypeTest.class);
//$JUnit-END$
return suite;
}
}