Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

AllTestsAspectJ160.java 1.0KB

123456789101112131415161718192021222324252627282930
  1. /*******************************************************************************
  2. * Copyright (c) 2006 IBM
  3. * All rights reserved. This program and the accompanying materials
  4. * are made available under the terms of the Eclipse Public License v1.0
  5. * which accompanies this distribution, and is available at
  6. * http://www.eclipse.org/legal/epl-v10.html
  7. *
  8. * Contributors:
  9. * Andy Clement - initial API and implementation
  10. *******************************************************************************/
  11. package org.aspectj.systemtest.ajc160;
  12. import junit.framework.Test;
  13. import junit.framework.TestSuite;
  14. public class AllTestsAspectJ160 {
  15. public static Test suite() {
  16. TestSuite suite = new TestSuite("AspectJ 1.6.0 tests");
  17. //$JUnit-BEGIN$
  18. suite.addTest(ParameterAnnotationMatchingTests.suite());
  19. suite.addTest(AnnotationValueMatchingTests.suite());
  20. suite.addTest(SanityTests.suite());
  21. suite.addTest(NewFeatures.suite());
  22. suite.addTest(Ajc160Tests.suite());
  23. //$JUnit-END$
  24. return suite;
  25. }
  26. }