コード例 #1
0
ファイル: test_toy.py プロジェクト: PlamenStilyianov/Python
 def test_negative(self):
     self.assertEqual(toy.global_function(-3), -2)
コード例 #2
0
ファイル: test_toy.py プロジェクト: PlamenStilyianov/Python
 def test_positive(self):
     self.assertEqual(toy.global_function(3), 4)
コード例 #3
0
ファイル: test_toy.py プロジェクト: PlamenStilyianov/Python
 def test_large(self):
     self.assertEqual(toy.global_function(2 ** 13), 2 ** 13 + 1)
コード例 #4
0
ファイル: test_toy.py プロジェクト: rheehot/practice
 def test_negative(self):
     self.assertEqual(toy.global_function(-3), -2)
コード例 #5
0
ファイル: test_toy.py プロジェクト: rheehot/practice
 def test_positive(self):
     self.assertEqual(toy.global_function(3), 4)
コード例 #6
0
ファイル: test_toy.py プロジェクト: rheehot/practice
 def test_large(self):
     self.assertEqual(toy.global_function(2**13), 2**13 + 1)