Пример #1
0
 def alpha_stringTest2(self):
     alpha_string = "Over the lazy dog"
     outcome = StringUtils.is_numeric_string(alpha_string)
     self.assertFalse(outcome)
Пример #2
0
 def alpha_stringTest1(self):
     alpha_string = "The quick brown fox jumps"
     outcome = StringUtils.is_numeric_string(alpha_string)
     self.assertFalse(outcome)