You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AllTests.java 595B

12345678910111213141516171819
  1. package org.aspectj.aopalliance.tests;
  2. import junit.framework.Test;
  3. import junit.framework.TestSuite;
  4. public class AllTests {
  5. public static Test suite() {
  6. TestSuite suite = new TestSuite(
  7. "Test for org.aspectj.aopalliance.tests");
  8. //$JUnit-BEGIN$
  9. suite.addTestSuite(JoinPointClosureTest.class);
  10. suite.addTestSuite(InvocationJoinPointClosureTest.class);
  11. suite.addTestSuite(MethodInvocationClosureTest.class);
  12. suite.addTestSuite(ConstructorInvocationClosureTest.class);
  13. suite.addTestSuite(AOPAllianceAdapterTest.class);
  14. //$JUnit-END$
  15. return suite;
  16. }
  17. }