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.

BcweaverModuleTests.java 1.2KB

123456789101112131415161718192021222324252627282930313233343536
  1. package org.aspectj.weaver;
  2. /* *******************************************************************
  3. * Copyright (c) 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. * PARC initial implementation
  12. * ******************************************************************/
  13. // default package
  14. import junit.framework.Test;
  15. import junit.framework.TestCase;
  16. import junit.framework.TestSuite;
  17. import org.aspectj.weaver.tools.ToolsTests;
  18. public class BcweaverModuleTests extends TestCase {
  19. public static Test suite() {
  20. TestSuite suite = new TestSuite(BcweaverModuleTests.class.getName());
  21. suite.addTest(org.aspectj.weaver.bcel.BcelTests.suite());
  22. suite.addTest(org.aspectj.weaver.BcweaverTests.suite());
  23. suite.addTest(org.aspectj.weaver.patterns.PatternsTests.suite());
  24. suite.addTestSuite(LocaleTest.class);
  25. suite.addTest(ToolsTests.suite());
  26. return suite;
  27. }
  28. public BcweaverModuleTests(String name) { super(name); }
  29. }