示例#1
0
 def teste_1_nao_eh_primo(self):
     fatorPrimo(1) |should| equal_to(False)
示例#2
0
 def teste_35_nao_eh_primo(self):
     fatorPrimo(35) |should| equal_to(False)
示例#3
0
 def test_4_nao_eh_primo(self):
     fatorPrimo(4) |should| equal_to(False)
示例#4
0
 def teste_5_eh_primo(self):
     fatorPrimo(5) |should| equal_to(True)
示例#5
0
 def test_3_eh_primo(self):
     fatorPrimo(3) |should| equal_to(True)