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.

AjcTests.java 1.3KB

123456789101112131415161718192021222324252627282930313233343536
  1. ///* *******************************************************************
  2. // * Copyright (c) 2005 Contributors.
  3. // * All rights reserved.
  4. // * This program and the accompanying materials are made available
  5. // * under the terms of the Eclipse Public License v 2.0
  6. // * which accompanies this distribution and is available at
  7. // * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt
  8. // *
  9. // * Contributors:
  10. // * Wes Isberg initial implementation
  11. // * ******************************************************************/
  12. //
  13. //
  14. //package org.aspectj.tools.ajc;
  15. //
  16. //import org.aspectj.testing.util.TestUtil;
  17. //
  18. //import junit.framework.Test;
  19. //import junit.framework.TestCase;
  20. //import junit.framework.TestSuite;
  21. //
  22. //public class AjcTests extends TestCase {
  23. // public static String aspectjrtClasspath() {
  24. // return TestUtil.aspectjrtPath().getPath();
  25. // }
  26. // public static Test suite() {
  27. // TestSuite suite = new TestSuite(AjcTests.class.getName());
  28. // suite.addTestSuite(org.aspectj.tools.ajc.MainTest.class);
  29. // suite.addTestSuite(ASTVisitorTest.class);
  30. // suite.addTestSuite(ASTitdTest.class);
  31. // suite.addTestSuite(AjASTTest.class);
  32. // suite.addTestSuite(AjNaiveASTFlattenerTest.class);
  33. // return suite;
  34. // }
  35. //
  36. //}