0
使用Python的unittest
模塊,斷言我如何才能只顯示自定義錯誤消息Python的unittest模塊
self.assertTrue(a > b - 0.5 && a < b + 0.5, "The two values did not agree")
輸出失敗如下:
AssertionError: False is not true : The two values did not agree
我不想False is not true
被打印。理想情況下,AssertionError
也不應該打印。應該只打印The two values did not agree
。
我可以這樣做嗎?
它的工作原理,感謝 – Tyler
@Tyler沒問題。祝你好運。 – idjaw