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.5KB

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. //
  15. //import junit.framework.Test;
  16. //import junit.framework.TestSuite;
  17. //
  18. //import org.aspectj.weaver.reflect.ReflectionWorldReferenceTypeTest;
  19. //import org.aspectj.weaver.reflect.ReflectionWorldSpecificTest;
  20. //import org.aspectj.weaver.tools.PointcutExpressionTest;
  21. //
  22. //public class AllWeaver5Tests {
  23. //
  24. // public static Test suite() {
  25. // TestSuite suite = new TestSuite(AllWeaver5Tests.class.getName());
  26. // // $JUnit-BEGIN$
  27. // suite.addTest(AllTracing5Tests.suite());
  28. // suite.addTest(BcweaverModule15Test.suite());
  29. // suite.addTestSuite(ReflectionWorldReferenceTypeTest.class);
  30. // suite.addTestSuite(PointcutExpressionTest.class);
  31. // suite.addTestSuite(JoinPointSignatureIteratorTest.class);
  32. // // gives incompatible class version error...
  33. // // suite.addTestSuite(ReflectionWorldAdvancedPointcutExpressionTests.class
  34. // // );
  35. // suite.addTestSuite(ReflectionWorldSpecificTest.class);
  36. // // $JUnit-END$
  37. // return suite;
  38. // }
  39. //
  40. //}