Exemplo n.º 1
0
 def test_verifying_isIntegerThenReturnFalse(self):
     outcome = isinteger('1x')
     self.assertFalse(outcome)
Exemplo n.º 2
0
 def test_verifying_isIntegerThenReturnTrue(self):
     outcome = isinteger('1')
     self.assertTrue(outcome)