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.

AllTestsJava5_binaryWeaving.java 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*******************************************************************************
  2. * Copyright (c) 2004 IBM
  3. * All rights reserved. This program and the accompanying materials
  4. * are made available under the terms of the Common Public License v1.0
  5. * which accompanies this distribution, and is available at
  6. * http://www.eclipse.org/legal/cpl-v10.html
  7. *
  8. * Contributors:
  9. * Andy Clement - initial API and implementation
  10. *******************************************************************************/
  11. package org.aspectj.systemtest.ajc150;
  12. import junit.framework.Test;
  13. import junit.framework.TestSuite;
  14. /**
  15. * @author colyer
  16. *
  17. * TODO To change the template for this generated type comment go to
  18. * Window - Preferences - Java - Code Style - Code Templates
  19. */
  20. public class AllTestsJava5_binaryWeaving {
  21. public static Test suite() {
  22. TestSuite suite = new TestSuite("Java5 - binary weaving");
  23. //$JUnit-BEGIN$
  24. suite.addTestSuite(MigrationTests.class);
  25. suite.addTest(Ajc150Tests.suite());
  26. suite.addTest(AccBridgeMethods.suite());
  27. suite.addTestSuite(CovarianceTests.class);
  28. suite.addTestSuite(Enums.class);
  29. suite.addTestSuite(Annotations.class);
  30. suite.addTestSuite(AnnotationPointcutsTests.class);
  31. suite.addTestSuite(VarargsTests.class);
  32. suite.addTestSuite(AnnotationRuntimeTests.class);
  33. //$JUnit-END$
  34. return suite;
  35. }
  36. }