コード例 #1
0
ファイル: romantest5.py プロジェクト: pywkm/diveintopython3pl
 def test_roundtrip(self):
     '''from_roman(to_roman(n))==n for all n'''
     for integer in range(1, 4000):
         numeral = roman5.to_roman(integer)
         result = roman5.from_roman(numeral)
         self.assertEqual(integer, result)
コード例 #2
0
 def test_from_roman_known_values(self):
     '''from_roman powinna dac znany rezultat dla danego napisu wejsciowego'''
     for integer, numeral in self.known_values:
         result = roman5.from_roman(numeral)
         self.assertEqual(integer, result)
コード例 #3
0
ファイル: romantest5.py プロジェクト: pywkm/diveintopython3pl
 def test_from_roman_known_values(self):
     '''from_roman should give known result with known input'''
     for integer, numeral in self.known_values:
         result = roman5.from_roman(numeral)
         self.assertEqual(integer, result)
コード例 #4
0
 def test_from_roman_known_values(self):
     '''from_roman dovrebbe dare un risultato noto con un ingresso noto'''
     for integer, numeral in self.known_values:
         result = roman5.from_roman(numeral)
         self.assertEqual(integer, result)