@Before
public void setupCompoundService() throws URISyntaxException
{
allName = "all";
allType = ServiceType.COMPOUND;
allBaseUri = new URI( "");
allService = new ServiceImpl( allName, allType, allBaseUri, null );
odapName = "odap";
odapType = ServiceType.OPENDAP;
odapBaseUri = new URI( "http://server/thredds/dodsC/" );
odapService = (ServiceImpl) allService.addService( odapName, odapType, odapBaseUri );
wcsName = "wcs";
wcsType = ServiceType.WCS;
wcsBaseUri = new URI( "http://server/thredds/wcs/" );
wcsService = (ServiceImpl) allService.addService( wcsName, wcsType, wcsBaseUri );
wmsName = "wms";
wmsType = ServiceType.WMS;
wmsBaseUri = new URI( "http://server/thredds/wms/" );
wmsService = (ServiceImpl) allService.addService( wmsName, wmsType, wmsBaseUri );
}