expect(mockJizzStationDao.getPrimaryStation()).andReturn(mockStation);
expect(mockJizzDjServices.getCurrentDj()).andReturn(mockDj);
replayAll();
HomeResult result = homeHandler.execute(new HomeAction(), null);
assertEquals(mockDj.getName(), result.getName());
verifyAll();
}