mcp-cpp-server 0.2.2

A high-performance Model Context Protocol (MCP) server for C++ code analysis using clangd LSP integration
//! Tests for MCP Server Tools
//!
//! This module contains tests for various MCP server tools including
//! member analysis, symbol search, and project tools.

#[cfg(all(test, feature = "clangd-integration-tests"))]
pub mod call_hierarchy_tests;
#[cfg(all(test, feature = "clangd-integration-tests"))]
pub mod definitions_tests;
#[cfg(all(test, feature = "clangd-integration-tests"))]
pub mod document_symbols_tests;
#[cfg(all(test, feature = "clangd-integration-tests"))]
pub mod examples_tests;
#[cfg(all(test, feature = "clangd-integration-tests"))]
pub mod hover_tests;
#[cfg(all(test, feature = "clangd-integration-tests"))]
pub mod member_tests;
#[cfg(all(test, feature = "clangd-integration-tests"))]
pub mod symbol_resolution_tests;
#[cfg(all(test, feature = "clangd-integration-tests"))]
pub mod type_hierarchy_tests;