* Test the adding of encoded urls.
*
* @throws java.lang.Exception if an exception occurs.
*/
public void testAddEncodedURLCandidate() throws Exception {
TestMarinerRequestContext requestContext = new TestMarinerRequestContext();
MultipartApplicationContext context = new MultipartApplicationContext(requestContext);
assertNull("Before add, urls should be null", context.getEncodedURLs());
context.addEncodedURLCandidate(null);
assertNotNull("After add, we should have urls", context.getEncodedURLs());