示例#1
0
 def testFromRomanCase(self):
     """fromRoman should only accept uppercase input"""
     for integer in range(1, 5000):
         numeral = roman71.toRoman(integer)
         roman71.fromRoman(numeral.upper())
         self.assertRaises(roman71.InvalidRomanNumeralError,
                           roman71.fromRoman, numeral.lower())
 def testFromRomanCase(self):
     """fromRoman should only accept uppercase input"""
     for integer in range(1, 5000):
         numeral = roman71.toRoman(integer)
         roman71.fromRoman(numeral.upper())
         self.assertRaises(roman71.InvalidRomanNumeralError,
                           roman71.fromRoman, numeral.lower())
 def testToRomanKnownValues(self):
     """toRoman should give known result with known input"""
     for integer, numeral in self.knownValues:
         result = roman71.toRoman(integer)
         self.assertEqual(numeral, result)
 def testToRomanCase(self):
     """toRoman should always return uppercase"""
     for integer in range(1, 5000):
         numeral = roman71.toRoman(integer)
         self.assertEqual(numeral, numeral.upper())
 def testSanity(self):
     """fromRoman(toRoman(n))==n for all n"""
     for integer in range(1, 5000):
         numeral = roman71.toRoman(integer)
         result = roman71.fromRoman(numeral)
         self.assertEqual(integer, result)
示例#6
0
 def testToRomanKnownValues(self):
     """toRoman should give known result with known input"""
     for integer, numeral in self.knownValues:
         result = roman71.toRoman(integer)
         self.assertEqual(numeral, result)
示例#7
0
 def testToRomanCase(self):
     """toRoman should always return uppercase"""
     for integer in range(1, 5000):
         numeral = roman71.toRoman(integer)
         self.assertEqual(numeral, numeral.upper())
示例#8
0
 def testSanity(self):
     """fromRoman(toRoman(n))==n for all n"""
     for integer in range(1, 5000):
         numeral = roman71.toRoman(integer)
         result = roman71.fromRoman(numeral)
         self.assertEqual(integer, result)