()
| 183 | |
| 184 | #[test] |
| 185 | fn test_telemetry_config_clone() { |
| 186 | let config = TelemetryConfig::new("http://localhost:4317").with_service_name("test"); |
| 187 | let cloned = config.clone(); |
| 188 | assert_eq!(cloned.endpoint, "http://localhost:4317"); |
| 189 | assert_eq!(cloned.service_name, "test"); |
| 190 | } |
| 191 | |
| 192 | #[test] |
| 193 | fn test_telemetry_config_debug() { |
nothing calls this directly
no test coverage detected