コード例 #1
0
ファイル: IpxactInt.py プロジェクト: zegervdv/ipyxact
 def testHex_underscore_caps(self):
     self.assertEqual(IpxactInt("8'h0_F"), 15)
     self.assertEqual(IpxactInt("8'h0_f"), 15)
コード例 #2
0
ファイル: IpxactInt.py プロジェクト: zegervdv/ipyxact
 def testHex_sized(self):
     self.assertEqual(IpxactInt("4'hF"), 15)
     self.assertEqual(IpxactInt("4'hf"), 15)
コード例 #3
0
ファイル: IpxactInt.py プロジェクト: zegervdv/ipyxact
 def testHex_sized_caps(self):
     self.assertEqual(IpxactInt("4'HF"), 15)
     self.assertEqual(IpxactInt("4'Hf"), 15)
コード例 #4
0
ファイル: IpxactInt.py プロジェクト: zegervdv/ipyxact
 def testDecimal_sized_caps(self):
     self.assertEqual(IpxactInt("8'D100"), 100)
コード例 #5
0
ファイル: IpxactInt.py プロジェクト: zegervdv/ipyxact
 def testHex_nonstandard_0x(self):
     self.assertEqual(IpxactInt("0xF"), 15)
コード例 #6
0
ファイル: IpxactInt.py プロジェクト: zegervdv/ipyxact
 def testDecimal_underscore(self):
     self.assertEqual(IpxactInt("1_0_0"), 100)
コード例 #7
0
ファイル: IpxactInt.py プロジェクト: zegervdv/ipyxact
 def testDecimal_sized(self):
     self.assertEqual(IpxactInt("8'd100"), 100)
コード例 #8
0
ファイル: IpxactInt.py プロジェクト: zegervdv/ipyxact
 def testOctal_underscore_caps(self):
     self.assertEqual(IpxactInt("6'O7_7"), 63)
コード例 #9
0
ファイル: IpxactInt.py プロジェクト: zegervdv/ipyxact
 def testDecimal_num(self):
     self.assertEqual(IpxactInt("100"), 100)
コード例 #10
0
ファイル: IpxactInt.py プロジェクト: zegervdv/ipyxact
 def testOctal_sized_caps(self):
     self.assertEqual(IpxactInt("6'O77"), 63)
コード例 #11
0
ファイル: IpxactInt.py プロジェクト: zegervdv/ipyxact
 def testOctal_sized(self):
     self.assertEqual(IpxactInt("6'o77"), 63)
コード例 #12
0
ファイル: IpxactInt.py プロジェクト: zegervdv/ipyxact
 def testBinary_underscore_caps(self):
     self.assertEqual(IpxactInt("8'B0000_1100"), 12)
コード例 #13
0
ファイル: IpxactInt.py プロジェクト: zegervdv/ipyxact
 def testBinary_sized_caps(self):
     self.assertEqual(IpxactInt("4'B1100"), 12)
コード例 #14
0
ファイル: IpxactInt.py プロジェクト: zegervdv/ipyxact
 def testBinary_sized(self):
     self.assertEqual(IpxactInt("4'b1100"), 12)