diff options
Diffstat (limited to 'weaver/testsrc/org')
-rw-r--r-- | weaver/testsrc/org/aspectj/weaver/bcel/BcelGenericSignatureToTypeXTestCase.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weaver/testsrc/org/aspectj/weaver/bcel/BcelGenericSignatureToTypeXTestCase.java b/weaver/testsrc/org/aspectj/weaver/bcel/BcelGenericSignatureToTypeXTestCase.java index a51ffdc2c..28cf82f5a 100644 --- a/weaver/testsrc/org/aspectj/weaver/bcel/BcelGenericSignatureToTypeXTestCase.java +++ b/weaver/testsrc/org/aspectj/weaver/bcel/BcelGenericSignatureToTypeXTestCase.java @@ -25,7 +25,7 @@ import org.aspectj.weaver.UnresolvedType; */ public class BcelGenericSignatureToTypeXTestCase extends TestCase { - public void testEnumFromHell() { + public void testEnumFromHell() throws Exception { BcelWorld world = new BcelWorld(); JavaClass javaLangEnum = Repository.lookupClass("java/lang/Enum"); Signature.ClassSignature cSig = javaLangEnum.getGenericClassTypeSignature(); @@ -53,7 +53,7 @@ public class BcelGenericSignatureToTypeXTestCase extends TestCase { assertEquals("Ljava/io/Serializable;",serializable.getSignature()); } - public void testColonColon() { + public void testColonColon() throws Exception { BcelWorld world = new BcelWorld(); Signature.ClassSignature cSig = new GenericSignatureParser().parseAsClassSignature("<T::Ljava/io/Serializable;>Ljava/lang/Object;Ljava/lang/Comparable<TT;>;"); UnresolvedType resolved = BcelGenericSignatureToTypeXConverter.classTypeSignature2TypeX( |