mod common_tests; use common_tests::fixtures::run_test; use common_tests::fixtures::server::ClientToAgentConnection; use common_tests::{ run_config_mcp, run_initialize_without_provider, run_load_model, run_model_list, run_model_set, run_permission_persistence, run_prompt_basic, run_prompt_codemode, run_prompt_image, run_prompt_mcp, }; #[test] fn test_config_mcp() { run_test(async { run_config_mcp::().await }); } #[test] fn test_initialize_without_provider() { run_test(async { run_initialize_without_provider().await }); } #[test] fn test_load_model() { run_test(async { run_load_model::().await }); } #[test] fn test_model_list() { run_test(async { run_model_list::().await }); } #[test] fn test_model_set() { run_test(async { run_model_set::().await }); } #[test] fn test_permission_persistence() { run_test(async { run_permission_persistence::().await }); } #[test] fn test_prompt_basic() { run_test(async { run_prompt_basic::().await }); } #[test] fn test_prompt_codemode() { run_test(async { run_prompt_codemode::().await }); } #[test] fn test_prompt_image() { run_test(async { run_prompt_image::().await }); } #[test] fn test_prompt_mcp() { run_test(async { run_prompt_mcp::().await }); }