Files
fastapi/docs/ko/docs/advanced/testing-events.md
Sebastián Ramírez cf8dc98aad 🌐 Update translations for ko (update-outdated) (#14589)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Yurii Motov <yurii.motov.monte@gmail.com>
2026-01-11 00:15:26 +00:00

739 B

이벤트 테스트: 라이프스팬 및 시작 - 종료

테스트에서 lifespan을 실행해야 하는 경우, with 문과 함께 TestClient를 사용할 수 있습니다:

{* ../../docs_src/app_testing/tutorial004_py39.py hl[9:15,18,27:28,30:32,41:43] *}

"공식 Starlette 문서 사이트에서 테스트에서 라이프스팬 실행하기."에 대한 자세한 내용을 더 읽을 수 있습니다.

더 이상 권장되지 않는 startupshutdown 이벤트의 경우, 다음과 같이 TestClient를 사용할 수 있습니다:

{* ../../docs_src/app_testing/tutorial003_py39.py hl[9:12,20:24] *}