extends PlexusTestCase
{
public void testFindServletEmptyPath()
throws Exception
{
ServletAnnotationFinder servletAnnotationFinder = (ServletAnnotationFinder) lookup( ServletAnnotationFinder.class
.getName() );
Set<ServletDescriptor> servletDescriptors = servletAnnotationFinder.findServlets( "org.codehaus.mojo.gwt",
null, Thread.currentThread()
.getContextClassLoader() );
assertEquals( 1, servletDescriptors.size() );
ServletDescriptor desc = servletDescriptors.iterator().next();