当前位置: 首页>>代码示例>>Python>>正文


Python Monster.in_tokyo方法代码示例

本文整理汇总了Python中monster.Monster.in_tokyo方法的典型用法代码示例。如果您正苦于以下问题:Python Monster.in_tokyo方法的具体用法?Python Monster.in_tokyo怎么用?Python Monster.in_tokyo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在monster.Monster的用法示例。


在下文中一共展示了Monster.in_tokyo方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: InTokyoTest

# 需要导入模块: from monster import Monster [as 别名]
# 或者: from monster.Monster import in_tokyo [as 别名]
class InTokyoTest(unittest.TestCase):
    """Test the functionality of the Monster class in_tokyo function."""

    def setUp(self):
        self.new_monster = Monster("Cookie")

    def tearDown(self):
        del self.new_monster

    def test_in_tokyo_yes(self):
        """Set status to "In Tokyo" on a Monster class object, new_monster.
        Check that in_tokyo() returns True."""
        self.new_monster.status = "In Tokyo"
        self.assertEqual(self.new_monster.in_tokyo(), True)

    def test_in_tokyo_no(self):
        """Set status to "" on a Monster class object, new_monster.
        Check that in_tokyo() returns False."""
        self.new_monster.status = ""
        self.assertEqual(self.new_monster.in_tokyo(), False)

    def test_in_tokyo_invalid(self):
        """Set status to -78.3 on a Monster class object, new_monster.
        Check that in_tokyo() returns False."""
        self.new_monster.status = -78.3
        self.assertEqual(self.new_monster.in_tokyo(), False)
开发者ID:TheOneTAR,项目名称:atifar,代码行数:28,代码来源:test_in_tokyo.py

示例2: test_in_tokyo

# 需要导入模块: from monster import Monster [as 别名]
# 或者: from monster.Monster import in_tokyo [as 别名]
class test_in_tokyo(unittest.TestCase):
    #Defines status
    def setUp(self):
        self.monsta = Monster()
        self.monsta.status = "In Tokyo"

    #Tests if monster shows up in Tokyo
    def test_in_toyko_true(self):
        tokyo = self.monsta.in_tokyo()

        self.assertTrue(tokyo, "Monster not showing up in Tokyo")

    #Tests if monster does not show up in Tokyo
    def test_in_tokyo_false(self):
        self.monsta.status = "Out of Tokyo"
        tokyo = self.monsta.in_tokyo()
        self.assertFalse(tokyo,"Monster is showing up in Tokyo")
开发者ID:TheOneTAR,项目名称:daniel_pearl,代码行数:19,代码来源:test_in_tokyo.py


注:本文中的monster.Monster.in_tokyo方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。