use of org.codice.ddf.spatial.ogc.csw.catalog.common.CswRequest in project ddf by codice.
the class TestCswEndpoint method testGetUnknownService.
@Test(expected = CswException.class)
public void testGetUnknownService() throws CswException {
CswRequest request = new CswRequest();
csw.unknownService(request);
}
use of org.codice.ddf.spatial.ogc.csw.catalog.common.CswRequest in project ddf by codice.
the class CswEndpointTest method testGetUnknownService.
@Test(expected = CswException.class)
public void testGetUnknownService() throws CswException {
CswRequest request = new CswRequest();
csw.unknownService(request);
}
use of org.codice.ddf.spatial.ogc.csw.catalog.common.CswRequest in project ddf by codice.
the class TestCswEndpoint method testGetUnknownOperation.
@Test(expected = CswException.class)
public void testGetUnknownOperation() throws CswException {
CswRequest request = new CswRequest();
csw.unknownOperation(request);
}
use of org.codice.ddf.spatial.ogc.csw.catalog.common.CswRequest in project ddf by codice.
the class CswEndpointTest method testGetUnknownOperation.
@Test(expected = CswException.class)
public void testGetUnknownOperation() throws CswException {
CswRequest request = new CswRequest();
csw.unknownOperation(request);
}
Aggregations