()
| 890 | |
| 891 | #[test] |
| 892 | fn test_idle_session_start() { |
| 893 | let r = transition( |
| 894 | Phase::Idle, |
| 895 | Event::SessionStart, |
| 896 | TransitionContext::default(), |
| 897 | ); |
| 898 | assert_eq!(r.new_phase, Phase::Idle); |
| 899 | assert!(r.is_noop()); |
| 900 | } |
| 901 | |
| 902 | #[test] |
| 903 | fn test_idle_session_stop() { |
nothing calls this directly
no test coverage detected