gpt4 book ai didi

Python:测试的约定名称

转载 作者:太空宇宙 更新时间:2023-11-03 17:15:08 26 4
gpt4 key购买 nike

使用 unittest 模块时,Python 中的测试命名是否有约定。我知道继承自 unittest.TestCase 的类中的每个方法都应该以 test 开头,但我想知道什么更好:

<强>1。没有文档字符串的简短描述性名称

def test_for_a_date_on_a_weekday(self):
customer_type = "Regular"
dates = ["16Mar2009(mon)"]
self.assertEquals(self.hotel_reservation_system.find_cheapest_hotel(customer_type, dates), "Lakewood")

<强>2。单词 test 后面的数字以及解释测试的文档字符串。

def test_1(self):
"""Tests the cheapest hotel when the date is on a weekday.
"""
customer_type = "Regular"
dates = ["16Mar2009(mon)"]
self.assertEquals(self.hotel_reservation_system.find_cheapest_hotel(customer_type, dates), "Lakewood")

哪个选项更可取,如果有的话我应该使用什么?

最佳答案

Generally it is preferable to increase readability by :
- choosing an adequate name
- describing how it works

选择您的名字,使其简短且具有描述性。为了便于阅读,请使用snake_case。例如:test_week_date。

始终在函数中包含文档字符串。如果名称不够清晰或者读者并不真正理解该方法的作用/她是如何做到的,这将使读者能够获得所有必要的信息。

结论:带有文档字符串的简短描述性(snake_case)名称。

关于Python:测试的约定名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33720522/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com