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


Python Tank.check_rule方法代码示例

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


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

示例1: TestTankVolume4

# 需要导入模块: from dipplanner.tank import Tank [as 别名]
# 或者: from dipplanner.tank.Tank import check_rule [as 别名]
class TestTankVolume4(TestTank):
    """Test Tank Volume 4."""

    def setUp(self):
        """Init of the tests."""
        super().setUp()

        self.mytank = Tank(tank_vol=15, tank_pressure=207)

    def test_vol(self):
        """Test volume calc."""
        self.mytank.consume_gas(405)
        self.mytank.consume_gas(2800)
        self.assertEqual(self.mytank.check_rule(), False,
                         'Wrong tank status : it should fail the remaining '
                         'gas rule test (result:%s)'
                         % self.mytank.check_rule())
开发者ID:ThomasChiroux,项目名称:dipplanner,代码行数:19,代码来源:tank_test.py

示例2: TestTankVolume4

# 需要导入模块: from dipplanner.tank import Tank [as 别名]
# 或者: from dipplanner.tank.Tank import check_rule [as 别名]
class TestTankVolume4(TestTank):
    def setUp(self):
        self.mytank = Tank(tank_vol=15, tank_pressure=207)

    def test_vol(self):
        self.mytank.consume_gas(405)
        self.mytank.consume_gas(2800)
        self.assertEqual(
            self.mytank.check_rule(),
            False,
            "Wrong tank status : it should fail the remaining " "gas rule test (result:%s)" % self.mytank.check_rule(),
        )
开发者ID:hordurk,项目名称:dipplanner,代码行数:14,代码来源:tank_test.py


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