()
| 739 | |
| 740 | #[tokio::test] |
| 741 | async fn test_get_all_tools_empty_manager() { |
| 742 | let manager = McpManager::new(); |
| 743 | let tools = manager.get_all_tools().await; |
| 744 | assert!(tools.is_empty()); |
| 745 | } |
| 746 | |
| 747 | #[tokio::test] |
| 748 | async fn test_resolve_auth_header_none_when_no_oauth() { |
nothing calls this directly
no test coverage detected