Skip to content

Commit 35c396c

Browse files
committed
added 123 unit tests
1 parent 8b6d9ce commit 35c396c

16 files changed

+3137
-0
lines changed

.coverage

52 KB
Binary file not shown.

.github/PULL_REQUEST_TEMPLATE.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
## Description
2+
<!-- Describe the changes you've made -->
3+
4+
## Related Issue
5+
<!-- Reference any related issues (e.g., Fixes #123) -->
6+
7+
## Checklist
8+
- [ ] I have read the CONTRIBUTING document
9+
- [ ] My code follows the code style of this project
10+
- [ ] I have added tests that prove my fix/feature works
11+
- [ ] All new and existing tests pass

tests/__init__.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
"""
2+
Unit tests for the MCP Protocol Validator codebase.
3+
"""

tests/unit/__init__.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
"""
2+
Unit tests for testing the codebase itself, not MCP protocol compliance.
3+
"""

tests/unit/adapters/__init__.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
"""
2+
Unit tests for adapter modules.
3+
"""

0 commit comments

Comments
 (0)