示例#1
0
 def test_find_decimal4(self):
     thedouble = "2040"
     try:
         thedouble = tools.find_decimal(thedouble)
         self.fail("No error was thrown while parsing an invalid number " + thedouble)
     except NoNumError as error:
         return
示例#2
0
 def test_find_decimal3(self):
     thedouble = "-9000.0000"
     try:
         thedouble = tools.find_decimal(thedouble)
         self.fail("No error was thrown while parsing an invalid double" + thedouble)
     except NoNumError as error:
         return
示例#3
0
 def test_find_decimal4(self):
     thedouble = "2040"
     try:
         thedouble = tools.find_decimal(thedouble)
         self.fail("No error was thrown while parsing an invalid number " +
                   thedouble)
     except NoNumError as error:
         return
示例#4
0
 def test_find_decimal3(self):
     thedouble = "-9000.0000"
     try:
         thedouble = tools.find_decimal(thedouble)
         self.fail("No error was thrown while parsing an invalid double" +
                   thedouble)
     except NoNumError as error:
         return
示例#5
0
 def test_find_decimal_in_text(self):
     self.assertEquals(tools.find_decimal(self.line), self.double1)
示例#6
0
 def test_find_decimal2(self):
     self.assertEquals(tools.find_decimal(str(self.double2)), self.double2)
示例#7
0
 def test_find_decimal_in_text(self):
     self.assertEquals(tools.find_decimal(self.line), self.double1)
示例#8
0
 def test_find_decimal2(self):
     self.assertEquals(tools.find_decimal(str(self.double2)), self.double2)
示例#9
0
 def test_find_decimal1(self):
     self.assertEqual(tools.find_decimal(str(self.double1)), self.double1)