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.

AllTestsAspectJ190.java 979B

123456789101112131415161718192021222324252627
  1. /*******************************************************************************
  2. * Copyright (c) 2014 Contributors
  3. * All rights reserved. This program and the accompanying materials
  4. * are made available under the terms of the Eclipse Public License v 2.0
  5. * which accompanies this distribution, and is available at
  6. * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt
  7. *
  8. * Contributors:
  9. * Andy Clement - initial API and implementation
  10. *******************************************************************************/
  11. package org.aspectj.systemtest.ajc190;
  12. import junit.framework.Test;
  13. import junit.framework.TestSuite;
  14. public class AllTestsAspectJ190 {
  15. public static Test suite() {
  16. TestSuite suite = new TestSuite("AspectJ 1.9.0 tests");
  17. suite.addTest(Ajc190Tests.suite());
  18. suite.addTest(SanityTests19.suite());
  19. suite.addTest(EfficientTJPTests.suite());
  20. suite.addTest(ModuleTests.suite());
  21. suite.addTest(Annotations.suite());
  22. return suite;
  23. }
  24. }