// for Result and Validator, there are helpful mocked implementations
// that you can use if you want to just ignore them or perform simple
// assertions
Result result = new MockResult();
Validator validator = new MockValidator();
controller = new HomeController(dao, userInfo, result, validator);
}