()
| 973 | |
| 974 | #[test] |
| 975 | fn test_tracker_into_conflicts() { |
| 976 | let mut tracker = CrdtConflictTracker::new(); |
| 977 | tracker.add_simple(ConflictKind::ConcurrentInsert, "test"); |
| 978 | |
| 979 | let conflicts = tracker.into_conflicts(); |
| 980 | assert_eq!(conflicts.len(), 1); |
| 981 | } |
| 982 | |
| 983 | #[test] |
| 984 | fn test_tracker_clear() { |
nothing calls this directly
no test coverage detected