Beispiel #1
0
 def test_define_cr_retorna_aluno_com_cr_atualizado(self):
     expected = 7
     aluno = Aluno(aluno_nome_1).define_cr(expected)
     actual = aluno.pega_coeficiente_rendimento()
     assert actual == expected
Beispiel #2
0
 def test_coeficiente_rendimento_aluno_novo_tem_que_ser_zero(self):
     expected = 0
     aluno = Aluno(aluno_nome_1)
     actual = aluno.pega_coeficiente_rendimento()
     assert actual == expected