]> source.dussan.org Git - aspectj.git/commitdiff
removed shared reflection world test for now
authorAndy Clement <aclement@pivotal.io>
Fri, 20 Oct 2017 19:41:48 +0000 (12:41 -0700)
committerAndy Clement <aclement@pivotal.io>
Fri, 20 Oct 2017 19:41:48 +0000 (12:41 -0700)
weaver5/java5-testsrc/org/aspectj/weaver/TestJava5ReflectionBasedReferenceTypeDelegate.java
weaver5/java5-testsrc/org/aspectj/weaver/reflect/ReflectionWorldTest.java

index 9474d63cd7fe171247799382f127ee20201544b5..f5061e32b3e8ab2f65dc23c3904814ea355be95f 100644 (file)
@@ -1,5 +1,5 @@
 /* *******************************************************************
- * Copyright (c) 2005 Contributors.
+ * Copyright (c) 2005-2017 Contributors.
  * All rights reserved. 
  * This program and the accompanying materials are made available 
  * under the terms of the Eclipse Public License v1.0 
@@ -77,7 +77,6 @@ public class TestJava5ReflectionBasedReferenceTypeDelegate extends ReflectionBas
                ResolvedType rt2 = genericType.getSuperclass();
                assertTrue("Superclass for Map generic type should be Object but was " + rt2, rt2.equals(UnresolvedType.OBJECT));
        }
-       
 
        /**
         * This is testing the optimization in the reflective annotation finder to verify that if you only want runtime
index db3e44711dd61a543e855218e2a03cc9372c8132..1108ca13c32a80c849c5872e9d6ce2b27b64263d 100644 (file)
@@ -40,7 +40,9 @@ public class ReflectionWorldTest extends TestCase {
                assertEquals("Ljava/lang/Object;", rt.getSignature());
        }
        
-       public void testReflectionWorldFactory() throws Exception {
+       // Removed for now. In Spring the reflection worlds are customized by introducing new
+       // PCD handlers. It means more thought needs to be put into reusing worlds.
+       public void xtestReflectionWorldFactory() throws Exception {
                ClassLoader parent = getClass().getClassLoader();
                ClassLoader cl1 = new URLClassLoader(new URL[] {}, parent);
                ClassLoader cl2 = new URLClassLoader(new URL[] {}, parent);