blvm-node 0.1.0

Bitcoin Commons BLVM: Minimal Bitcoin node implementation using blvm-protocol and blvm-consensus
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Server Profiling Tests
//!
//! Tests for RPC server profiling functionality.
//!
//! Note: server_profiling module is not exported, so we test via integration
//! or skip if module is not accessible.

#[test]
fn test_profiling_module_exists() {
    // Test that profiling functionality can be accessed if needed
    // Since the module is not exported, we just verify the test compiles
    // Actual profiling tests would need the module to be exported or tested via integration
    assert!(true);
}