Map<String,String> urlInputValues = new HashMap<String,String>();
urlInputValues.put("normalParam", "normalValue");
urlInputValues.put("headerParam", "headerValue");
urlInputValues.put("footerParam", "footerValue");
SimpleResponse response = requestPage("NormalPage", urlInputValues);
String content = response.getContent();
assertHasRegexp("header headerValue", content);
assertHasRegexp("normal normalValue", content);
assertHasRegexp("footer footerValue", content);
urlInputValues = new HashMap<String,String>();
urlInputValues.put("headerParam", "headerValue");
urlInputValues.put("footerParam", "footerValue");
urlInputValues.put("testPageParam", "testPageValue");
urlInputValues.put("footerParam", "footerValue");
urlInputValues.put("setupParam", "setupValue");
urlInputValues.put("teardownParam", "teardownValue");
urlInputValues.put("suiteSetupParam", "suiteSetupValue");
urlInputValues.put("suiteTeardownParam", "suiteTeardownValue");
response = requestPage("TestPage", urlInputValues);
content = response.getContent();
assertHasRegexp("header headerValue", content);
assertHasRegexp("test page testPageValue", content);
assertHasRegexp("footer footerValue", content);
assertHasRegexp("setup setupValue", content);
assertHasRegexp("teardown teardownValue", content);