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.

Ajc161Tests.java 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*******************************************************************************
  2. * Copyright (c) 2008 Contributors
  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.ajc161;
  12. import java.io.File;
  13. import junit.framework.Test;
  14. import org.aspectj.testing.XMLBasedAjcTestCase;
  15. public class Ajc161Tests extends org.aspectj.testing.XMLBasedAjcTestCase {
  16. // AspectJ1.6.1
  17. public void testGetFieldGenerics_pr227401() { runTest("getfield problem with generics");}
  18. public void testGenericAbstractAspects_pr231478() { runTest("generic abstract aspects"); }
  19. public void testFieldJoinpointsAndAnnotationValues_pr227993() { runTest("field jp anno value"); }
  20. public void testGenericsBoundsDecp_pr231187() { runTest("generics bounds decp"); }
  21. public void testGenericsBoundsDecp_pr231187_2() { runTest("generics bounds decp - 2"); }
  22. public void testLtwInheritedCflow_pr230134() { runTest("ltw inherited cflow"); }
  23. public void testAroundAdviceOnFieldSet_pr229910() { runTest("around advice on field set"); }
  24. public void testPipelineCompilationGenericReturnType_pr226567() { runTest("pipeline compilation and generic return type"); }
  25. public static Test suite() {
  26. return XMLBasedAjcTestCase.loadSuite(Ajc161Tests.class);
  27. }
  28. protected File getSpecFile() {
  29. return new File("../tests/src/org/aspectj/systemtest/ajc161/ajc161.xml");
  30. }
  31. }