()
| 894 | |
| 895 | #[test] |
| 896 | fn test_session_state_set_phase() { |
| 897 | let mut s = make_session(); |
| 898 | s.set_phase(Phase::Active); |
| 899 | assert_eq!(s.phase, Phase::Active); |
| 900 | } |
| 901 | |
| 902 | #[test] |
| 903 | fn test_session_state_set_phase_ended_sets_ended_at() { |
nothing calls this directly
no test coverage detected