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.

AllTestsAspectJ150_NeedJava15.java 1.0KB

1234567891011121314151617181920212223242526272829303132
  1. /*******************************************************************************
  2. * Copyright (c) 2005 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. * This is a superset of AllTestsAspectJ150 that includes tests that must be run on Java 1.5
  16. */
  17. public class AllTestsAspectJ150_NeedJava15 {
  18. public static Test suite() {
  19. TestSuite suite = new TestSuite("Java5");
  20. //$JUnit-BEGIN$
  21. suite.addTestSuite(Ajc150TestsRequireJava15.class);
  22. suite.addTestSuite(Autoboxing.class);
  23. suite.addTestSuite(Annotations.class);
  24. suite.addTestSuite(AnnotationBinding.class);
  25. //$JUnit-END$
  26. return suite;
  27. }
  28. }