()
| 465 | |
| 466 | #[test] |
| 467 | fn test_session_queue_config_handler_config() { |
| 468 | let config = SessionQueueConfig::default(); |
| 469 | let handler = config.handler_config(SessionLane::Execute); |
| 470 | assert_eq!(handler.mode, TaskHandlerMode::Internal); |
| 471 | assert_eq!(handler.timeout_ms, 60_000); |
| 472 | } |
| 473 | |
| 474 | #[test] |
| 475 | fn test_session_queue_config_builders() { |
nothing calls this directly
no test coverage detected