Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Aula.bateCom() #115

Open
williamhjcho opened this issue Jun 10, 2016 · 4 comments
Open

Aula.bateCom() #115

williamhjcho opened this issue Jun 10, 2016 · 4 comments
Assignees

Comments

@williamhjcho
Copy link
Contributor

if(this.diaDaSemana != outraAula.getDiaDaSemana()){
    return false;
}else if (this.bateHorarioCom(outraAula.getPeriodo())){
    return true;
}

return false;

reduzível para

return this.diaDaSemana == outraAula.getDiaDaSemana()
        && this.bateHorarioCom(outraAula.getPeriodo());
@calebepb
Copy link
Collaborator

calebepb commented Nov 8, 2017

Foi confirmado que os testes existentes validam essa refatoração? Se não, construir testes para garantir o antes/depois.

@ErikAoki
Copy link

ErikAoki commented Nov 9, 2017

Existe um teste dentro dos pacotes de teste que testa esse método com um objeto teste, e ao reduzir o código do jeito que foi sugerido, o teste continua aprovando.

@calebepb
Copy link
Collaborator

calebepb commented Nov 9, 2017

Perfeito. Falta apenas fazer o Pull-Request #185 ser aprovado.

@ErikAoki
Copy link

ErikAoki commented Nov 9, 2017

Fiquei meio confuso, então eu faria uma branch issue-185 e faria o pull-request? E seria #185 ao invés de #115 mesmo?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants