public void testPathIsRealGroup()
throws Exception
{
TreeViewRequest req =
new TreeViewRequest( new DefaultTreeNodeFactory( context.getRepositoryId() ), "/org/slf4j/", context );
TreeNode root = indexTreeView.listNodes( req );
int leafsFound = prettyPrint( debug, root, 0 );
assertEquals( "The group name should be here", "slf4j", root.getNodeName() );
assertEquals( 3, root.getChildren().size() );
assertEquals( 10, leafsFound );
}