示例#1
0
	def test_location_not_in_lp(self):
		e = board.create_nice_board_and_hive(10)
		spot = (100,100,100)
		self.assertFalse(e.location_in_lp(spot))
示例#2
0
	def __init__(self):
		self.radius = 35
		self.e = board.create_nice_board_and_hive(self.radius)
示例#3
0
	def test_location_in_lp(self):
		e = board.create_nice_board_and_hive(10)
		spot = (3,-10,7)
		self.assertTrue(e.location_in_lp(spot))