From 967ea6dcfe7dae7dc8d2c42fc2694047bc622ff7 Mon Sep 17 00:00:00 2001 From: aclement Date: Mon, 17 Mar 2008 17:03:14 +0000 Subject: [PATCH] 167197: Make array a subclass of referencetype and not resolvedtype --- tests/src/org/aspectj/systemtest/ajc160/Ajc160Tests.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/src/org/aspectj/systemtest/ajc160/Ajc160Tests.java b/tests/src/org/aspectj/systemtest/ajc160/Ajc160Tests.java index 316fc9a58..5616a059b 100644 --- a/tests/src/org/aspectj/systemtest/ajc160/Ajc160Tests.java +++ b/tests/src/org/aspectj/systemtest/ajc160/Ajc160Tests.java @@ -12,9 +12,8 @@ package org.aspectj.systemtest.ajc160; import java.io.File; -import junit.framework.Test; - import org.aspectj.testing.XMLBasedAjcTestCase; +import junit.framework.Test; /** * These are tests for AspectJ1.6.0 @@ -30,6 +29,9 @@ public class Ajc160Tests extends org.aspectj.testing.XMLBasedAjcTestCase { public void testBadMessage2() { runTest("incorrect itd error with generics - 2");} public void testHasMethodAnnoValueInt_various() { runTest("hasmethod anno value - I");} public void testHasMethodAnnoValueBoolean_various() { runTest("hasmethod anno value - Z");} + public void testGenericTypeParameterizedWithArrayType_pr167197() { runTest("generic type parameterized with array type");} + public void testGenericTypeParameterizedWithArrayType_pr167197_2() { runTest("generic type parameterized with array type - 2");} + // AspectJ1.6.0m2 and earlier public void testBoundsCheckShouldFail_pr219298() { runTest("bounds check failure");} -- 2.39.5