Esempio n. 1
0
 def teste_1_nao_eh_primo(self):
     fatorPrimo(1) |should| equal_to(False)
Esempio n. 2
0
 def teste_35_nao_eh_primo(self):
     fatorPrimo(35) |should| equal_to(False)
Esempio n. 3
0
 def test_4_nao_eh_primo(self):
     fatorPrimo(4) |should| equal_to(False)
Esempio n. 4
0
 def teste_5_eh_primo(self):
     fatorPrimo(5) |should| equal_to(True)
Esempio n. 5
0
 def test_3_eh_primo(self):
     fatorPrimo(3) |should| equal_to(True)