package test.scotlandyard;
import junit.framework.Assert;
import org.junit.Test;
import scotlandyard.servlets.maps.map_container;
public class map_containerTest {
@Test
public void testProcessRequestMapOfStringStringString() throws Exception {
String res = new map_container().processRequest("-");
Assert.assertTrue(res.contains("introduction.html"));
}
}