()
| 982 | |
| 983 | #[test] |
| 984 | fn test_tracker_clear() { |
| 985 | let mut tracker = CrdtConflictTracker::new(); |
| 986 | tracker.add_simple(ConflictKind::ConcurrentInsert, "test"); |
| 987 | tracker.clear(); |
| 988 | |
| 989 | assert!(tracker.is_empty()); |
| 990 | } |
| 991 | |
| 992 | #[test] |
| 993 | fn test_tracker_by_kind() { |
nothing calls this directly
no test coverage detected