--- /dev/null
+# WebSocket ํ
์คํธํ๊ธฐ
+
+`TestClient`๋ฅผ ์ฌ์ฉํ์ฌ WebSocket์ ํ
์คํธํ ์ ์์ต๋๋ค.
+
+์ด๋ฅผ ์ํด `with` ๋ฌธ์์ `TestClient`๋ฅผ ์ฌ์ฉํ์ฌ WebSocket์ ์ฐ๊ฒฐํฉ๋๋ค:
+
+```Python hl_lines="27-31"
+{!../../docs_src/app_testing/tutorial002.py!}
+```
+
+/// note | ์ฐธ๊ณ
+
+์์ธํ ๋ด์ฉ์ Starlette์ <a href="https://www.starlette.io/testclient/#testing-websocket-sessions" class="external-link" target="_blank"> WebSocket ํ
์คํธ</a>์ ๊ดํ ์ค๋ช
์๋ฅผ ์ฐธ๊ณ ํ์๊ธธ ๋ฐ๋๋๋ค.
+
+///