()
| 880 | |
| 881 | #[test] |
| 882 | fn test_idle_recorded() { |
| 883 | let r = transition(Phase::Idle, Event::Recorded, TransitionContext::default()); |
| 884 | assert_eq!(r.new_phase, Phase::Idle); |
| 885 | assert_eq!( |
| 886 | r.actions, |
| 887 | vec![Action::RecordTurn, Action::UpdateInteraction] |
| 888 | ); |
| 889 | } |
| 890 | |
| 891 | #[test] |
| 892 | fn test_idle_session_start() { |
nothing calls this directly
no test coverage detected