public void testAttributeValues() throws Exception {
request.addInput("Edit", "On");
request.addInput("PageType", "Test");
request.addInput("Search", "On");
Responder responder = new MergeResponder(request);
SimpleResponse response = (SimpleResponse) responder.makeResponse(FitNesseUtil.makeTestContext(source), new MockRequest());
assertHasRegexp("type=\"hidden\"", response.getContent());
assertHasRegexp("name=\"Edit\"", response.getContent());
assertHasRegexp("name=\"PageType\" value=\"Test\" checked", response.getContent());
assertHasRegexp("name=\"Search\"", response.getContent());