@Before
public void setUp() throws Exception {
WikiPage root = InMemoryPage.makeRoot("RooT");
FitNesseContext context = FitNesseUtil.makeTestContext(root);
SearchFormResponder responder = new SearchFormResponder();
SimpleResponse response = (SimpleResponse) responder.makeResponse(context, new MockRequest());
content = response.getContent();
}
public void testFocusOnSearchBox() throws Exception {
assertSubString("onload=\"document.forms[0].searchString.focus()\"", content);