()
| 921 | |
| 922 | #[test] |
| 923 | fn test_remote_state_entries_from_past_end() { |
| 924 | let mut cache = RemoteState::empty(); |
| 925 | cache.insert(0, Node::change("A", "S0")); |
| 926 | |
| 927 | let result = cache.entries_from(5); |
| 928 | assert!(result.is_empty()); |
| 929 | } |
| 930 | |
| 931 | #[test] |
| 932 | fn test_remote_state_from_changelist() { |
nothing calls this directly
no test coverage detected