This does fix the test
Index: src/main/org/jboss/reflect/plugins/MethodInfoImpl.java
| ===================================================================
| --- src/main/org/jboss/reflect/plugins/MethodInfoImpl.java (revision 66504)
| +++ src/main/org/jboss/reflect/plugins/MethodInfoImpl.java (working copy)
| @@ -221,6 +221,10 @@
|
| if (name.equals(other.getName()) == false)
| return false;
| +
| + if(!returnType.equals(other.getReturnType()))
| + return false;
| +
| return Arrays.equals(parameterTypes, other.getParameterTypes());
| }
But I can't run the whole testsuite. 'mvn test' doesn't run any test in
the container. Is it just me?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4099455#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...