def test_verifying_isNumericThenReturnTrue(self): outcome = isNumeric('1.5') self.assertTrue(outcome)
def test_verifying_isNumericThenReturnFalse(self): outcome = isNumeric('string') self.assertFalse(outcome)