本文整理匯總了Python中team.Team.add_player方法的典型用法代碼示例。如果您正苦於以下問題:Python Team.add_player方法的具體用法?Python Team.add_player怎麽用?Python Team.add_player使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類team.Team
的用法示例。
在下文中一共展示了Team.add_player方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: __init__
# 需要導入模塊: from team import Team [as 別名]
# 或者: from team.Team import add_player [as 別名]
def __init__(self, games, schoolA, schoolB, playersA, playersB):
self.games = games
teamA = Team(schoolA)
teamB = Team(schoolB)
for player in playersA.split(","): #splitting the names by the comma (in the input-Kevin:1,) and adding it to the player list
teamA.add_player(player)
for player in playersB.split(","): #same thing with the opponent
teamB.add_player(player)
self.teamA = teamA
self.teamB = teamB
self.playersA = playersA
self.playersB = playersB
示例2: TeamTest
# 需要導入模塊: from team import Team [as 別名]
# 或者: from team.Team import add_player [as 別名]
class TeamTest(unittest.TestCase):
def setUp(self):
self.player1 = Player(None, None)
self.team = Team("test", bullet.btVector3(0, 0, 0), [self.player1], "ignore", 0)
def test_add_player(self):
p2 = Player(None, None)
self.team.add_player(p2)
self.assertIn(p2, self.team.players)
def test_remove_player(self):
self.team.remove_player(self.player1)
self.assertNotIn(self.player1, self.team.players)
def test_add_score(self):
self.team.add_score(5)
self.assertEqual(self.team.score, 5)
示例3: test_add_player
# 需要導入模塊: from team import Team [as 別名]
# 或者: from team.Team import add_player [as 別名]
def test_add_player(self):
teamA = Team("Cate")
playerA = Player("Kevin")
teamA.add_player(playerA)
self.assertEqual([playerA],teamA.players)