コード例 #1
0
 def test_atoi(self):
     self.assertEqual(string.atoi('123'), 123)
コード例 #2
0
 def test_atoi_neg(self):
     self.assertEqual(string.atoi('-123'), -123)
コード例 #3
0
 def test_atoi_neg(self):
     self.assertEqual(string.atoi('-123'), -123)
コード例 #4
0
 def test_atoi(self):
     self.assertEqual(string.atoi('123'), 123)