Skip to main content

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"