bevy_debugger_mcp 0.1.8

AI-assisted debugging for Bevy games through Claude Code using Model Context Protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/// Integration test infrastructure for Bevy Debugger MCP
/// 
/// This module provides comprehensive testing infrastructure including:
/// - Test harness with mock clients
/// - Performance regression testing
/// - Command coverage validation
/// - Acceptance criteria verification

pub mod harness;

pub use harness::{
    IntegrationTestHarness,
    TestConfig,
    PerformanceMetrics,
    CommandCoverage,
    AcceptanceCriteria,
    MockBrpClient,
};