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.

AllWeaver5Tests.java 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* *******************************************************************
  2. * Copyright (c) 2005-2006 Contributors.
  3. * All rights reserved.
  4. * This program and the accompanying materials are made available
  5. * under the terms of the Eclipse Public License v1.0
  6. * which accompanies this distribution and is available at
  7. * http://eclipse.org/legal/epl-v10.html
  8. *
  9. * Contributors:
  10. * Adrian Colyer Initial implementation
  11. * Matthew Webster Move from default package
  12. * ******************************************************************/
  13. package org.aspectj.weaver;
  14. import junit.framework.Test;
  15. import junit.framework.TestSuite;
  16. import org.aspectj.weaver.reflect.ReflectionWorldReferenceTypeTest;
  17. import org.aspectj.weaver.reflect.ReflectionWorldSpecificTest;
  18. import org.aspectj.weaver.tools.PointcutExpressionTest;
  19. public class AllWeaver5Tests {
  20. public static Test suite() {
  21. TestSuite suite = new TestSuite(AllWeaver5Tests.class.getName());
  22. // $JUnit-BEGIN$
  23. suite.addTest(AllTracing5Tests.suite());
  24. suite.addTest(BcweaverModuleTests15.suite());
  25. suite.addTestSuite(ReflectionWorldReferenceTypeTest.class);
  26. suite.addTestSuite(PointcutExpressionTest.class);
  27. suite.addTestSuite(JoinPointSignatureIteratorTests.class);
  28. // gives incompatible class version error...
  29. // suite.addTestSuite(ReflectionWorldAdvancedPointcutExpressionTests.class
  30. // );
  31. suite.addTestSuite(ReflectionWorldSpecificTest.class);
  32. // $JUnit-END$
  33. return suite;
  34. }
  35. }