Testing
This guide explains Cheolsu Proxy's testing strategy and execution methods.
Testing Strategy
Test Pyramid
E2E Tests (Few)
/ \
Integration Tests (Medium)
/ \
Unit Tests (Many)
- Unit Tests: Individual function/method testing
- Integration Tests: Inter-module interaction testing
- E2E Tests: Full application testing
To be added.