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.

BcweaverModule15Test.java 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //package org.aspectj.weaver;
  2. //
  3. ///* *******************************************************************
  4. // * Copyright (c) 2005 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://eclipse.org/legal/epl-v10.html
  10. // *
  11. // * Contributors:
  12. // * Adrian Colyer Initial implementation
  13. // * ******************************************************************/
  14. //import junit.framework.Test;
  15. //import junit.framework.TestCase;
  16. //import junit.framework.TestSuite;
  17. //
  18. //import org.aspectj.weaver.bcel.BcelGenericSignatureToTypeXTestCase;
  19. //import org.aspectj.weaver.bcel.BcelWorldReferenceTypeTest;
  20. //import org.aspectj.weaver.patterns.WildTypePatternResolutionTestCase;
  21. //import org.aspectj.weaver.tools.Java15PointcutExpressionTest;
  22. //
  23. //public class BcweaverModule15Test extends TestCase {
  24. // public static Test suite() {
  25. // TestSuite suite = new TestSuite(BcweaverModule15Test.class.getName());
  26. // suite.addTestSuite(BcelGenericSignatureToTypeXTestCase.class);
  27. // suite.addTestSuite(BoundedReferenceTypeTestCase.class);
  28. // suite.addTest(Java15PointcutExpressionTest.suite());
  29. // suite.addTestSuite(Member15Test.class);
  30. // suite.addTestSuite(BcelWorldReferenceTypeTest.class);
  31. // suite.addTest(Java5ReflectionBasedReferenceTypeDelegateTest.suite());
  32. // suite.addTestSuite(TypeVariableTestCase.class);
  33. // suite.addTestSuite(TypeVariableReferenceTypeTestCase.class);
  34. // suite.addTestSuite(WildTypePatternResolutionTestCase.class);
  35. // return suite;
  36. // }
  37. //
  38. // public BcweaverModule15Test(String name) {
  39. // super(name);
  40. // }
  41. //}