Search the web
Sign In
New User? Sign Up
jdepend
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Bug in JDepend-JUnit-Test   Message List  
Reply | Forward Message #69 of 72 |
Hi everybody,

I discovered some interesting things while experimenting with
Jdepend-JUnit-Tests. I found a bug in the method match(Collection)
within the class jdepend.framework.DependencyConstraint. The code
around the for-loop looks like this:
for (Iterator i = expectedPackages.iterator(); i.hasNext();) {

else {break;}
return true;
}

But the correct way is:
for (Iterator i = expectedPackages.iterator(); i.hasNext();) {

else {break;}
}
return true;

Can anybody confirm that?

Cheers,
Yusuf





Tue Jul 31, 2007 2:59 pm

yusuf.coekel...
Offline Offline
Send Email Send Email

Forward
Message #69 of 72 |
Expand Messages Author Sort by Date

Hi everybody, I discovered some interesting things while experimenting with Jdepend-JUnit-Tests. I found a bug in the method match(Collection) within the class...
yusuf.coekelekoglu
yusuf.coekel...
Offline Send Email
Jul 31, 2007
3:02 pm
Advanced

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help