JavaCompilerCore/test/mycompiler/test/AllTests.java
2014-10-09 12:01:16 +02:00

42 lines
1.5 KiB
Java
Executable File

package mycompiler.test;
import junit.framework.Test;
import junit.framework.TestSuite;
import mycompiler.test.blocks.AllTestsBlocks;
import mycompiler.test.complexTypes.AllTestsComplexTypes;
import mycompiler.test.generics.AllTestsGenerics;
import mycompiler.test.inferenceByCharacteristic.AllTestsInferenceByCharacteristic;
import mycompiler.test.javaConcepts.inheritance.AllTestsInheritance;
import mycompiler.test.javaConcepts.overloading.AllTestsOverloading;
import mycompiler.test.javaConcepts.staticAccess.AllTestsStaticAccess;
import mycompiler.test.operators.AllTestsOperators;
import mycompiler.test.primitiveTypes.AllTestsPrimitiveTypes;
import mycompiler.test.trivial.AllTestsTrivial;
import de.dhbwstuttgart.logger.xml.DOMConfigurator;
public class AllTests {
public static Test suite() {
// DOMConfigurator.configure("test/log4jTesting.xml");
// DOMConfigurator.configure("log4j.xml");
TestSuite suite = new TestSuite("Test for mycompiler.test");
//$JUnit-BEGIN$
suite.addTest(AllTestsBlocks.suite());
suite.addTest(AllTestsInferenceByCharacteristic.suite());
suite.addTest(AllTestsInheritance.suite());
suite.addTest(AllTestsOverloading.suite());
suite.addTest(AllTestsOperators.suite());
suite.addTest(AllTestsPrimitiveTypes.suite());
suite.addTest(AllTestsTrivial.suite());
suite.addTest(AllTestsGenerics.suite());
suite.addTest(AllTestsStaticAccess.suite());
suite.addTest(AllTestsComplexTypes.suite());
//$JUnit-END$
return suite;
}
}