()
| 936 | |
| 937 | #[test] |
| 938 | fn test_active_recorded_mid_turn() { |
| 939 | let r = transition(Phase::Active, Event::Recorded, TransitionContext::default()); |
| 940 | assert_eq!(r.new_phase, Phase::ActiveRecorded); |
| 941 | assert_eq!(r.actions, vec![Action::UpdateInteraction]); |
| 942 | } |
| 943 | |
| 944 | #[test] |
| 945 | fn test_active_session_start_warn() { |
nothing calls this directly
no test coverage detected