def test_checkNotEndGame_MovesLeftNoWin_returnsTrue(self):
		game = Game()
		result = game.checkNotEndGame(False, game.NoWin)
		self.assertTrue(result)
示例#2
0
 def test_checkNotEndGame_MovesLeftNoWin_returnsTrue(self):
     game = Game()
     result = game.checkNotEndGame(False, game.NoWin)
     self.assertTrue(result)
	def test_checkNotEndGame_MovesLeftWin_returnsFalse(self):
		game = Game()
		result = game.checkNotEndGame(False, game.FirstPlayerWin)
		self.assertFalse(result)
示例#4
0
 def test_checkNotEndGame_MovesLeftWin_returnsFalse(self):
     game = Game()
     result = game.checkNotEndGame(False, game.FirstPlayerWin)
     self.assertFalse(result)