()
| 1400 | |
| 1401 | #[test] |
| 1402 | fn test_apply_common_noop_result() { |
| 1403 | let mut session = MockSession::new(); |
| 1404 | let result = TransitionResult::noop(Phase::Idle); |
| 1405 | |
| 1406 | let remaining = apply_common_actions(&mut session, &result); |
| 1407 | |
| 1408 | assert!(remaining.is_empty()); |
| 1409 | assert!(!session.interaction_touched.get()); |
| 1410 | assert!(!session.ended_at_cleared.get()); |
| 1411 | } |
| 1412 | |
| 1413 | // Integration: transition + apply_common_actions |
| 1414 |
nothing calls this directly
no test coverage detected