예제 #1
0
파일: test.py 프로젝트: minh0722/Bomberman
 def test_normalize_position_for_explosion(self):
     object = Object((112, 0), 33, 11)
     self.assertEqual(object.normalize_position(), (0, 3))
예제 #2
0
파일: test.py 프로젝트: minh0722/Bomberman
 def test_normalize_position(self):
     object = Object((22, 0), 33, 11)
     self.assertEqual(object.normalize_position(), (0, 1))