verifyZeroInteractions(result);
}
@Test(expected=ValidationException.class)
public void naoDeveReservarMaisIngressosQueASessaoPermite() throws Exception {
Sessao sessao = new Sessao();
sessao.setTotalIngressos(3);
when(agenda.sessao(1234l)).thenReturn(sessao);
controller.reserva(1234l, 5);