2
想象我有這樣的測試:Python的單元測試,之前的測試案例聲明
import unittest
class MyTests(unittest.TestCase):
print("Starting")
def test_first(self):
.....
是在print
語句保證會執行test_first()
,其餘過嗎?從我看到它首先被執行,但是有沒有邊緣情況?