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.

MatcherModuleTests.java 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* *******************************************************************
  2. * Copyright (c) 2002-2008 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://www.eclipse.org/legal/epl-v10.html
  8. *
  9. * Contributors:
  10. * PARC initial implementation
  11. * ******************************************************************/
  12. // default package
  13. package org.aspectj.weaver;
  14. import junit.framework.Test;
  15. import junit.framework.TestCase;
  16. import junit.framework.TestSuite;
  17. import org.aspectj.matcher.tools.ReflectionWorldPointcutExpressionTests;
  18. import org.aspectj.weaver.patterns.PatternsTests;
  19. import org.aspectj.weaver.reflect.ReflectionWorldBasicTest;
  20. import org.aspectj.weaver.reflect.ReflectionWorldSpecificTest;
  21. public class MatcherModuleTests extends TestCase {
  22. public MatcherModuleTests(String name) {
  23. super(name);
  24. }
  25. public static Test suite() {
  26. TestSuite suite = new TestSuite(MatcherModuleTests.class.getName());
  27. suite.addTestSuite(ReflectionWorldSpecificTest.class);
  28. suite.addTestSuite(ReflectionWorldBasicTest.class);
  29. suite.addTestSuite(ReflectionWorldPointcutExpressionTests.class);
  30. suite.addTestSuite(TypeFactoryTests.class);
  31. suite.addTest(PatternsTests.suite());
  32. return suite;
  33. }
  34. }