Description
Some tests in wink-server were named with extra characters on the end:
org.apache.wink.server.internal.registry.FindResourceMethodTest1
org.apache.wink.server.internal.registry.FindResourceMethodTest2
These will not get picked up by junit. Junit looks for *Test by default. The '2' and '3' will "hide" the test classes.
I suggest renaming them to:
FindResourceMethod1Test
FindResourceMethod2Test
I renamed them in my env, and ran them, but had some failures. Sorry I didn't have time to go debug them. Heading for vacation! I can work on this when I get back, if not done by then.