Refactor: PHASE 8: Testing & Integration

This commit is contained in:
ziesorx 2025-09-12 18:55:23 +07:00
parent af34f4fd08
commit 9e8c6804a7
32 changed files with 17128 additions and 0 deletions

View file

@ -0,0 +1,19 @@
"""
Integration tests for the detector worker application.
This package contains integration tests that verify the interaction
between multiple components and end-to-end workflows.
"""
# Integration test modules
from . import (
test_complete_detection_workflow,
test_websocket_protocol,
test_pipeline_integration
)
__all__ = [
"test_complete_detection_workflow",
"test_websocket_protocol",
"test_pipeline_integration"
]