本文整理汇总了Python中Controller.Controller.do_edit_income方法的典型用法代码示例。如果您正苦于以下问题:Python Controller.do_edit_income方法的具体用法?Python Controller.do_edit_income怎么用?Python Controller.do_edit_income使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Controller.Controller
的用法示例。
在下文中一共展示了Controller.do_edit_income方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_SelectedRecord_EditIncome
# 需要导入模块: from Controller import Controller [as 别名]
# 或者: from Controller.Controller import do_edit_income [as 别名]
def test_SelectedRecord_EditIncome(self):
"""
A RecordCollection with one Record will be provided to Controller
- Random ID, male, default attributes
- Randomise an income
- Methodology for picking a new income will be
(original sales + 1) % 1000
"""
theRC = self._getRecordColl_OneMaleRecord_RandomID()
theRecord = theRC.getAllRecords()[0]
theID = theRecord.getID()
theRecord.setIncome(random.randrange(1000))
originalIncome = theRecord.getIncome()
newIncome = (originalIncome + 1) % 1000 # 1000 is income limit
theController = Controller(TestView.TestView(), theRC)
# From here the record will be manipulated via theController
# Successful calls will represent the record via show message
expected_1 = self._getRecordStateMessage(theID, income=originalIncome)
expected_2 = self._getRecordStateMessage(theID, income=newIncome)
# Call 1, selecting the record. 3 show messages
expectedList = [TestObjectSelectionClass._expRecordHeader, expected_1,
TestObjectSelectionClass._expRecordFunctions]
TestView.clearLog()
theController.do_select_rec(theID)
self.assertEqual(expectedList, TestView.theLog)
# Call 2, editing the income. 3 show messages
expectedList[1] = expected_2
TestView.clearLog()
theController.do_edit_income(newIncome)
self.assertEqual(expectedList, TestView.theLog)
示例2: test_NoRecordSelected
# 需要导入模块: from Controller import Controller [as 别名]
# 或者: from Controller.Controller import do_edit_income [as 别名]
def test_NoRecordSelected(self):
"""
This can be asserted by attempting to select an option
- Regardless if the attempt works or not, one expected outcome is that
no record will be selected
"""
theController = Controller(TestView.TestView(), None)
theController.do_select_option("")
# For the method calls below, the main flow requires a record to be
# selected, therefore the alternative show message is expected
expectedMessage = "No record selected"
TestView.clearLog()
theController.do_edit_age("")
theController.do_edit_sales("")
theController.do_edit_bmi("")
theController.do_edit_income("")
# 4 calls
self.assertEqual(4, len(TestView.theLog))
for actualMessage in TestView.theLog:
self.assertEqual(expectedMessage, actualMessage)