Debug & Test
Unit Test
Pytest
Debugging
assert
在此範例中,assert <condition>, <message>
陳述式測試:
x是否等於
5。如果條件符合,陳述式condition 為 True,沒有作用。;如果條件不符合,將為 False,會產生錯誤,並顯示訊息
x 應為 5。
x = 5
assert x == 5, "x should be 5"
Pytest
在此範例中,assert <condition>, <message>
陳述式測試:
x是否等於
5。如果條件符合,陳述式condition 為 True,沒有作用。;如果條件不符合,將為 False,會產生錯誤,並顯示訊息
x 應為 5。
x = 5
assert x == 5, "x should be 5"