//! Integration tests for Backtesting Service //! //! NOTE: These tests are currently disabled because backtesting_service is a binary-only crate //! without a library interface. To enable these tests, the service would need to expose //! its implementation as a library crate. //! //! For now, integration testing is done via actual service deployment and gRPC calls. #![cfg(test)] #![allow(dead_code, unused_imports)] use anyhow::Result; #[tokio::test] #[ignore = "Service is binary-only - requires running service for integration tests"] async fn test_placeholder() -> Result<()> { // This is a placeholder to keep the test file valid // Actual integration tests should be done via deployed service + gRPC client Ok(()) }