Files
AASRT/dev/tests/__init__.py
T

19 lines
572 B
Python

"""
AASRT Test Suite
This package contains all tests for the AI Agent Security Reconnaissance Tool.
Test Categories:
- Unit tests: Test individual components in isolation
- Integration tests: Test component interactions
- End-to-end tests: Test complete workflows
Running Tests:
pytest # Run all tests
pytest tests/unit/ # Run unit tests only
pytest tests/integration/ # Run integration tests only
pytest -v --cov=src # Run with coverage
pytest -m "not slow" # Skip slow tests
"""