Skip to content

Instantly share code, notes, and snippets.

@praser
Created December 27, 2018 18:12
Show Gist options
  • Save praser/895a6073f5c72c866957120aa62a0ff5 to your computer and use it in GitHub Desktop.
Save praser/895a6073f5c72c866957120aa62a0ff5 to your computer and use it in GitHub Desktop.
Exemplo TDD - Criando o método calcularComissao
public class Comissao {
public double calcularComissao(double valorVenda) {
return 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment