()
| 922 | |
| 923 | #[test] |
| 924 | fn test_session_state_set_phase() { |
| 925 | let mut s = make_session(); |
| 926 | s.set_phase(Phase::Active); |
| 927 | assert_eq!(s.phase, Phase::Active); |
| 928 | } |
| 929 | |
| 930 | #[test] |
| 931 | fn test_session_state_set_phase_ended_sets_ended_at() { |
nothing calls this directly
no test coverage detected