private static final ResourceClasses resourceClasses = new ResourceClasses(
new ThreadLocalizedContext(), null, null, Engine
.getAnonymousLogger());
public void testIllegalMethodPath() throws Exception {
final RootResourceClass rrc = RootResourceClassTest
.getPerRequestRootClassWrapper(resourceClasses,
IllegalMethPathRrc.class);
@SuppressWarnings("unused")
Collection<ResourceMethod> rms;
rms = rrc.getMethodsForPath(new RemainingPath("abc"));
rms = rrc.getMethodsForPath(new RemainingPath(""));
rms = rrc.getMethodsForPath(new RemainingPath("subpath"));
}