# Test Directory
This directory contains tests for the Mind Map MCP Server.
## Structure
Place your test files here. Example test files could include:
- `test_mind_map_center.py` - Tests for center layout
- `test_mind_map_horizontal.py` - Tests for horizontal layout
- `test_mind_map_free.py` - Tests for free/smart layout
- `test_server.py` - Tests for the MCP server
## Running Tests
You can run tests using pytest or unittest:
```bash
# Using pytest
pytest test/
# Using unittest
python -m unittest discover test
```