public void testPrivateServicePoint() throws Exception
{
ModuleDescriptor md = parse("PrivateServicePoint.xml");
List points = md.getServicePoints();
ServicePointDescriptor spd = (ServicePointDescriptor) points.get(0);
assertEquals(Visibility.PRIVATE, spd.getVisibility());
}