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.

AjdeTests.java 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* *******************************************************************
  2. * Copyright (c) 1999-2001 Xerox Corporation,
  3. * 2002 Palo Alto Research Center, Incorporated (PARC).
  4. * All rights reserved.
  5. * This program and the accompanying materials are made available
  6. * under the terms of the Eclipse Public License v1.0
  7. * which accompanies this distribution and is available at
  8. * http://www.eclipse.org/legal/epl-v10.html
  9. *
  10. * Contributors:
  11. * Xerox/PARC initial implementation
  12. * Helen Hawkins updated for bug 148190
  13. * ******************************************************************/
  14. package org.aspectj.ajde;
  15. import org.aspectj.ajde.internal.AspectJBuildManagerTest;
  16. import org.aspectj.ajde.internal.LstBuildConfigManagerTest;
  17. import org.aspectj.ajde.ui.StructureSearchManagerTest;
  18. import org.aspectj.ajde.ui.StructureViewManagerTest;
  19. import junit.framework.Test;
  20. import junit.framework.TestCase;
  21. import junit.framework.TestSuite;
  22. public class AjdeTests extends TestCase {
  23. public static Test suite() {
  24. TestSuite suite = new TestSuite(AjdeTests.class.getName());
  25. //$JUnit-BEGIN$
  26. suite.addTestSuite(SymbolFileGenerationTest.class);
  27. suite.addTestSuite(ExtensionTests.class);
  28. suite.addTestSuite(AspectJBuildManagerTest.class);
  29. suite.addTestSuite(LstBuildConfigManagerTest.class);
  30. suite.addTestSuite(StructureSearchManagerTest.class);
  31. suite.addTestSuite(StructureViewManagerTest.class);
  32. suite.addTestSuite(AjdeCompilerTests.class);
  33. //$JUnit-END$
  34. return suite;
  35. }
  36. public AjdeTests(String name) { super(name); }
  37. }