Skip to content

Instantly share code, notes, and snippets.

@GuilhermeManzano
Created November 20, 2020 03:21
Show Gist options
  • Save GuilhermeManzano/eba6fded00ec47e9eed3541710c99d31 to your computer and use it in GitHub Desktop.
Save GuilhermeManzano/eba6fded00ec47e9eed3541710c99d31 to your computer and use it in GitHub Desktop.
@Test(expected=Exception.class)
public void testLocacao_filmeSemEstoque() throws Exception {
// cenario
LocacaoService service = new LocacaoService();
Usuario usuario = new Usuario("Usuario 1");
Filme filme = new Filme("Filme 1", 2, 4.0);
// açao
service.alugarFilme(usuario, filme);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment