本文整理匯總了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())
示例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(),
)