/**
* Tests the {@link DefaultRequest#getSourceURL()} ()} method
*/
public void testGetSourceURL() throws Exception {
DefaultRequest dr = createTestable();
assertNull("expected null source url",
dr.getSourceURL());
((MutableParameters)dr.getInputParams()).setParameterValue("source-url",
"the-url");
assertEquals("wrong source url returned",
dr.getSourceURL(),
"the-url");
}