()
| 549 | |
| 550 | #[test] |
| 551 | fn test_global_memory_monitor() { |
| 552 | record_buffer_allocation(1024); |
| 553 | record_message_allocation(2048); |
| 554 | |
| 555 | let stats = global_memory_monitor().get_stats(); |
| 556 | assert!(stats.total_bytes() >= 3072); // May include previous test data |
| 557 | } |
| 558 | |
| 559 | #[test] |
| 560 | fn test_config_from_env() { |
nothing calls this directly
no test coverage detected