所以我在练习单元测试,我有一个关于错误消息的问题。我正在尝试创建一个自定义错误消息,当测试失败时将显示该消息。这是一个基本的Hello World程序。测试运行得很好,但下面是我得到的错误消息。在F ====================================================================== FAIL: test_StringContains
(__main__.TestSuite) ----------------------------------------------------------------------
Traceback (most recent call last): File "Testsuite.py", line 8, in test_StringContains
self.assertEqual("Hello, World", hello_world,"This is a custom error") AssertionError: 'Hello,
World' != 'Hello World' - Hello, World ? - + Hello World : This is a custom error ---------------
-------------------------------------------------------
Ran 1 test in 0.000s FAILED (failures=1)
所以这是意料之中的。这是我的测试套件
^{pr2}$
这是我的运行代码hello_world = "Hello World"
print (hello_world)
超级基本,只想了解如何抛出自定义错误消息。如果测试失败,我唯一想知道的是This is a custom error,我试着按照Python文档中关于错误和异常的内容https://docs.python.org/2/tutorial/errors.html,但不确定如何实现它。在
我不知道这是否可行。非常感谢任何帮助。谢谢你