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.

AjdocModuleTests.java 1.2KB

12345678910111213141516171819202122232425262728293031323334
  1. /* *******************************************************************
  2. * Copyright (c) 2003 Contributors.
  3. * All rights reserved.
  4. * This program and the accompanying materials are made available
  5. * under the terms of the Common Public License v1.0
  6. * which accompanies this distribution and is available at
  7. * http://www.eclipse.org/legal/cpl-v10.html
  8. *
  9. * Contributors:
  10. * Mik Kersten initial implementation
  11. * ******************************************************************/
  12. import org.aspectj.tools.ajdoc.CoverageTestCase;
  13. import org.aspectj.tools.ajdoc.ExecutionTestCase;
  14. import org.aspectj.tools.ajdoc.PatternsTestCase;
  15. import org.aspectj.tools.ajdoc.SpacewarTestCase;
  16. import junit.framework.Test;
  17. import junit.framework.TestSuite;
  18. /**
  19. * @author Mik Kersten
  20. */
  21. public class AjdocModuleTests {
  22. public static Test suite() {
  23. TestSuite suite = new TestSuite("Test for org.aspectj.tools.ajdoc");
  24. //$JUnit-BEGIN$
  25. suite.addTestSuite(SpacewarTestCase.class);
  26. suite.addTestSuite(PatternsTestCase.class);
  27. suite.addTestSuite(CoverageTestCase.class);
  28. suite.addTestSuite(ExecutionTestCase.class);// !!! must be last because it exists
  29. //$JUnit-END$
  30. return suite;
  31. }
  32. }