@Test
public void testDefault() throws Exception{
RequestBuilder rb = new RequestBuilder(ServerConfiguration.getServerUrl());
// Add Sling POST options
RequestExecutor result = executor.execute(
rb.buildGetRequest("/mdc","foo","bar"));
JSONObject jb = new JSONObject(result.getContent());
assertEquals("/mdc", jb.getString("req.requestURI"));
assertEquals("foo=bar", jb.getString("req.queryString"));
assertEquals(ServerConfiguration.getServerUrl() + "/mdc", jb.getString("req.requestURL"));