public void testCallInheritedGenericMethod_pr124999() { runTest("calling inherited generic method from around advice");}
public void testIncorrectlyReferencingPointcuts_pr122452() { runTest("incorrectly referencing pointcuts");}
public void testIncorrectlyReferencingPointcuts_pr122452_2() { runTest("incorrectly referencing pointcuts - 2");}
- //public void testEmptyPointcut_pr125475() { runTest("empty pointcut in atAJ");}
public void testInlinevisitorNPE_pr123901() { runTest("inlinevisitor NPE");}
+ //public void testExposingWithintype_enh123423() { runTest("exposing withintype");}
public void testMixingNumbersOfTypeParameters_pr125080() {
runTest("mixing numbers of type parameters");
assertFalse("printParameters method should have arguments",pe2.getParameterTypes().isEmpty());
}
+ /*
+ * Load-time weaving bugs and enhancements
+ */
+ public void testEmptyPointcutInAtAspectJ_pr125475 () {
+ runTest("define empty pointcut using an annotation");
+ }
+
+ public void testEmptyPointcutInAtAspectJ_pr125475_2() {
+ runTest("define empty pointcut using an annotation - 2");
+ }
+
+ public void testEmptyPointcutInAtAspectJWithLTW_pr125475 () {
+ runTest("define empty pointcut using aop.xml");
+ }
+
+ public void testLTWGeneratedAspectWithAbstractMethod_pr125480 () {
+ runTest("aop.xml aspect inherits abstract method that has concrete implementation in parent");
+ }
+
/////////////////////////////////////////
public static Test suite() {
return XMLBasedAjcTestCase.loadSuite(Ajc151Tests.class);