Exemple #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
Exemple #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
Exemple #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
Exemple #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
Exemple #5
0
 def test_find_decimal_in_text(self):
     self.assertEquals(tools.find_decimal(self.line), self.double1)
Exemple #6
0
 def test_find_decimal2(self):
     self.assertEquals(tools.find_decimal(str(self.double2)), self.double2)
Exemple #7
0
 def test_find_decimal_in_text(self):
     self.assertEquals(tools.find_decimal(self.line), self.double1)
Exemple #8
0
 def test_find_decimal2(self):
     self.assertEquals(tools.find_decimal(str(self.double2)), self.double2)
Exemple #9
0
 def test_find_decimal1(self):
     self.assertEqual(tools.find_decimal(str(self.double1)), self.double1)