# test/ - ํ
์คํธ (Tests)
## ๐ ์ฉ๋ (Purpose)
**๋ชจ๋ Pytest ํ
์คํธ**: ๋จ์ ํ
์คํธ + ํตํฉ ํ
์คํธ
## ๐ ๊ตฌ์กฐ (Structure)
### ํ์ผ
- `conftest.py` - ๊ณต์ fixtures (pytest)
### unit/ - ๋จ์ ํ
์คํธ
๊ฐ๋ณ ํจ์/๋ชจ๋ ํ
์คํธ
- `test_models.py` - 53 tests (H1/H2/H3/H4)
- `test_features.py` - 25 tests (vagueness scorer)
- `test_data_io.py` - 15 tests (NetCDF I/O)
### integration/ - ํตํฉ ํ
์คํธ
์ ์ฒด ํ์ดํ๋ผ์ธ ํ
์คํธ
- `test_paper_results.py` - ๋
ผ๋ฌธ ๊ฒฐ๊ณผ ๊ฒ์ฆ
- `test_data_quality.py` - 20 tests (๋ฐ์ดํฐ ํ์ง)
## ๐ ์ฌ์ฉ๋ฒ
```bash
# ์ ์ฒด ํ
์คํธ
pytest test/
# ํน์ ํ
์คํธ
pytest test/unit/test_models.py -v
```
## โ
์ด ํ
์คํธ ์
93 tests (unit: 93, integration: varies)