()
| 1332 | |
| 1333 | #[test] |
| 1334 | fn test_apply_common_updates_phase() { |
| 1335 | let mut session = MockSession::new(); |
| 1336 | let result = TransitionResult::with_actions(Phase::Active, vec![Action::UpdateInteraction]); |
| 1337 | |
| 1338 | apply_common_actions(&mut session, &result); |
| 1339 | |
| 1340 | assert_eq!(session.phase, Phase::Active); |
| 1341 | } |
| 1342 | |
| 1343 | #[test] |
| 1344 | fn test_apply_common_touches_interaction() { |
nothing calls this directly
no test coverage detected