()
| 882 | |
| 883 | #[test] |
| 884 | fn test_remote_state_entries_from_past_end() { |
| 885 | let mut cache = RemoteState::empty(); |
| 886 | cache.insert(0, Node::change("A", "S0")); |
| 887 | |
| 888 | let result = cache.entries_from(5); |
| 889 | assert!(result.is_empty()); |
| 890 | } |
| 891 | |
| 892 | #[test] |
| 893 | fn test_remote_state_from_changelist() { |
nothing calls this directly
no test coverage detected