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.

Ajc5Tests.java 1004B

123456789101112131415161718192021222324252627282930
  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 v1.0
  6. * which accompanies this distribution and is available at
  7. * http://eclipse.org/legal/epl-v10.html
  8. *
  9. * Contributors:
  10. * Matthew Webster initial implementation
  11. * ******************************************************************/
  12. package org.aspectj.tools.ajc;
  13. import org.aspectj.testing.util.TestUtil;
  14. import junit.framework.Test;
  15. import junit.framework.TestCase;
  16. import junit.framework.TestSuite;
  17. public class Ajc5Tests extends TestCase {
  18. public static String aspectjrtClasspath() {
  19. return TestUtil.aspectjrtPath().getPath();
  20. }
  21. public static Test suite() {
  22. TestSuite suite = new TestSuite(Ajc5Tests.class.getName());
  23. suite.addTestSuite(AjAST5Test.class);
  24. return suite;
  25. }
  26. }