()
| 860 | |
| 861 | #[test] |
| 862 | fn test_idle_turn_start() { |
| 863 | let r = transition(Phase::Idle, Event::TurnStart, TransitionContext::default()); |
| 864 | assert_eq!(r.new_phase, Phase::Active); |
| 865 | assert_eq!(r.actions, vec![Action::UpdateInteraction]); |
| 866 | } |
| 867 | |
| 868 | #[test] |
| 869 | fn test_idle_turn_end() { |
nothing calls this directly
no test coverage detected