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