本文整理匯總了Python中tests.Bf3TestCase.setUp方法的典型用法代碼示例。如果您正苦於以下問題:Python Bf3TestCase.setUp方法的具體用法?Python Bf3TestCase.setUp怎麽用?Python Bf3TestCase.setUp使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類tests.Bf3TestCase
的用法示例。
在下文中一共展示了Bf3TestCase.setUp方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: setUp
# 需要導入模塊: from tests import Bf3TestCase [as 別名]
# 或者: from tests.Bf3TestCase import setUp [as 別名]
def setUp(self):
Bf3TestCase.setUp(self)
self.conf = CfgConfigParser()
self.p = Poweradminbf3Plugin(self.console, self.conf)
logger = logging.getLogger('output')
logger.setLevel(logging.INFO)
self.scrambleTeams_mock = self.p._scrambler.scrambleTeams = Mock(name="scrambleTeams", wraps=self.p._scrambler.scrambleTeams)
self.scrambleTeams_mock.reset_mock()
示例2: setUp
# 需要導入模塊: from tests import Bf3TestCase [as 別名]
# 或者: from tests.Bf3TestCase import setUp [as 別名]
def setUp(self):
Bf3TestCase.setUp(self)
self.conf = CfgConfigParser()
with logging_disabled():
self.p = Poweradminbf3Plugin(self.console, self.conf)
when(self.console).write(('vars.roundStartPlayerCount',)).thenReturn(['0'])
self.scrambleTeams_mock = self.p._scrambler.scrambleTeams = Mock(name="scrambleTeams", wraps=self.p._scrambler.scrambleTeams)
self.scrambleTeams_mock.reset_mock()
示例3: setUp
# 需要導入模塊: from tests import Bf3TestCase [as 別名]
# 或者: from tests.Bf3TestCase import setUp [as 別名]
def setUp(self):
Bf3TestCase.setUp(self)
self.conf = CfgConfigParser()
self.conf.loadFromString("""[commands]
vehicles: 20
""")
self.p = Poweradminbf3Plugin(self.console, self.conf)
self.p.onLoadConfig()
self.p.onStartup()
示例4: setUp
# 需要導入模塊: from tests import Bf3TestCase [as 別名]
# 或者: from tests.Bf3TestCase import setUp [as 別名]
def setUp(self):
Bf3TestCase.setUp(self)
self.conf = CfgConfigParser()
self.conf.loadFromString("""\
[commands]
cancelvote-cv: 20
""")
self.p = VotemapPlugin(self.console, self.conf)
self.p.onLoadConfig()
self.p.onStartup()
示例5: setUp
# 需要導入模塊: from tests import Bf3TestCase [as 別名]
# 或者: from tests.Bf3TestCase import setUp [as 別名]
def setUp(self):
Bf3TestCase.setUp(self)
self.conf = CfgConfigParser()
self.conf.loadFromString("""
[commands]
bf3stats: 0
""")
self.p = Bf3StatsPlugin(self.console, self.conf)
self.p.onLoadConfig()
self.p.onStartup()
示例6: setUp
# 需要導入模塊: from tests import Bf3TestCase [as 別名]
# 或者: from tests.Bf3TestCase import setUp [as 別名]
def setUp(self):
Bf3TestCase.setUp(self)
self.conf = CfgConfigParser()
self.conf.loadFromString("""[commands]
roundrestart: 20
""")
self.p = Poweradminbf3Plugin(self.console, self.conf)
self.p.onLoadConfig()
self.p.onStartup()
self.superadmin.connects('superadmin')
示例7: setUp
# 需要導入模塊: from tests import Bf3TestCase [as 別名]
# 或者: from tests.Bf3TestCase import setUp [as 別名]
def setUp(self):
Bf3TestCase.setUp(self)
self.conf = CfgConfigParser()
self.conf.loadFromString("""[commands]
vipsave: 20
""")
self.p = Poweradminbf3Plugin(self.console, self.conf)
self.p.onLoadConfig()
self.p.onStartup()
self.moderator.connects("moderator")
示例8: setUp
# 需要導入模塊: from tests import Bf3TestCase [as 別名]
# 或者: from tests.Bf3TestCase import setUp [as 別名]
def setUp(self):
Bf3TestCase.setUp(self)
self.conf = CfgConfigParser()
self.conf.loadFromString("""[commands]
gmwp: 20
""")
self.p = RgmwpPlugin(self.console, self.conf)
self.p.onLoadConfig()
self.p.console.game.gameName = 'bf3'
self.p.onStartup()
self.superadmin.connects('superadmin')
示例9: setUp
# 需要導入模塊: from tests import Bf3TestCase [as 別名]
# 或者: from tests.Bf3TestCase import setUp [as 別名]
def setUp(self):
Bf3TestCase.setUp(self)
self.conf = CfgConfigParser()
self.conf.loadFromString("""[commands]
scramblemode: 20
""")
self.p = Poweradminbf3Plugin(self.console, self.conf)
self.p.onLoadConfig()
self.p.onStartup()
self.p._scrambler = Mock()
self.superadmin.connects('superadmin')
self.superadmin.clearMessageHistory()
示例10: setUp
# 需要導入模塊: from tests import Bf3TestCase [as 別名]
# 或者: from tests.Bf3TestCase import setUp [as 別名]
def setUp(self):
Bf3TestCase.setUp(self)
self.conf = CfgConfigParser()
self.conf.loadFromString("""[commands]
yellteam: 20
[preferences]
yell_duration: 2
""")
self.p = Poweradminbf3Plugin(self.console, self.conf)
self.p.onLoadConfig()
self.p.onStartup()
示例11: setUp
# 需要導入模塊: from tests import Bf3TestCase [as 別名]
# 或者: from tests.Bf3TestCase import setUp [as 別名]
def setUp(self):
Bf3TestCase.setUp(self)
self.conf = CfgConfigParser()
self.conf.loadFromString("""[commands]
viplist: 20
""")
self.p = Poweradminbf3Plugin(self.console, self.conf)
self.p.onLoadConfig()
self.p.onStartup()
self.console.say = Mock()
self.console.saybig = Mock()
self.moderator.connects("moderator")
self.joe.connects('joe')
self.joe.teamId = 2
示例12: setUp
# 需要導入模塊: from tests import Bf3TestCase [as 別名]
# 或者: from tests.Bf3TestCase import setUp [as 別名]
def setUp(self):
Bf3TestCase.setUp(self)
self.conf = CfgConfigParser()
self.conf.loadFromString("""[commands]
nuke: 20
""")
self.p = Poweradminbf3Plugin(self.console, self.conf)
self.p.onLoadConfig()
self.p.onStartup()
self.sleep_patcher = patch.object(time, 'sleep')
self.sleep_patcher.start()
self.console.say = Mock()
self.console.saybig = Mock()
self.moderator.connects("moderator")
self.moderator.teamId = 1
self.joe.connects('joe')
self.joe.teamId = 2
示例13: setUp
# 需要導入模塊: from tests import Bf3TestCase [as 別名]
# 或者: from tests.Bf3TestCase import setUp [as 別名]
def setUp(self):
Bf3TestCase.setUp(self)
self.conf = CfgConfigParser()
self.p = VotemapPlugin(self.console, self.conf)
self.p.onLoadConfig()
self.p.onStartup()
示例14: setUp
# 需要導入模塊: from tests import Bf3TestCase [as 別名]
# 或者: from tests.Bf3TestCase import setUp [as 別名]
def setUp(self):
Bf3TestCase.setUp(self)
self.conf = CfgConfigParser()
self.p = VotemapPlugin(self.console, self.conf)
logger = logging.getLogger('output')
logger.setLevel(logging.INFO)
示例15: setUp
# 需要導入模塊: from tests import Bf3TestCase [as 別名]
# 或者: from tests.Bf3TestCase import setUp [as 別名]
def setUp(self):
Bf3TestCase.setUp(self)
self.conf = CfgConfigParser()
self.setExistingPaths([])