示例#1
0
 def test_verifying_isNumericThenReturnTrue(self):
     outcome = isNumeric('1.5')
     self.assertTrue(outcome)
示例#2
0
 def test_verifying_isNumericThenReturnFalse(self):
     outcome = isNumeric('string')
     self.assertFalse(outcome)