()
| 1342 | |
| 1343 | #[test] |
| 1344 | fn test_apply_common_touches_interaction() { |
| 1345 | let mut session = MockSession::new(); |
| 1346 | let result = TransitionResult::with_actions(Phase::Idle, vec![Action::UpdateInteraction]); |
| 1347 | |
| 1348 | apply_common_actions(&mut session, &result); |
| 1349 | |
| 1350 | assert!(session.interaction_touched.get()); |
| 1351 | } |
| 1352 | |
| 1353 | #[test] |
| 1354 | fn test_apply_common_clears_ended_at() { |
nothing calls this directly
no test coverage detected