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.

TaskdefsTests.java 1.1KB

1234567891011121314151617181920212223242526272829303132333435
  1. /* *******************************************************************
  2. * Copyright (c) 1999-2001 Xerox Corporation,
  3. * 2002 Palo Alto Research Center, Incorporated (PARC),
  4. * 2003 Contributors.
  5. * All rights reserved.
  6. * This program and the accompanying materials are made available
  7. * under the terms of the Eclipse Public License v1.0
  8. * which accompanies this distribution and is available at
  9. * http://www.eclipse.org/legal/epl-v10.html
  10. *
  11. * Contributors:
  12. * Xerox/PARC initial implementation
  13. * Wes Isberg some 2003 tests
  14. * ******************************************************************/
  15. package org.aspectj.tools.ant.taskdefs;
  16. import junit.framework.*;
  17. public class TaskdefsTests extends TestCase {
  18. public static Test suite() {
  19. TestSuite suite = new TestSuite(TaskdefsTests.class.getName());
  20. //$JUnit-BEGIN$
  21. suite.addTestSuite(Ajc11CompilerAdapterTest.class);
  22. suite.addTestSuite(AjdocTest.class);
  23. suite.addTestSuite(AjcTaskTest.class);
  24. //$JUnit-END$
  25. return suite;
  26. }
  27. public TaskdefsTests(String name) { super(name); }
  28. }