()
| 841 | |
| 842 | #[test] |
| 843 | fn test_stats_total_operations() { |
| 844 | let mut stats = ApplyStats::new(); |
| 845 | |
| 846 | stats.add_trunk_created(); |
| 847 | stats.add_branch_inserted(); |
| 848 | stats.add_leaf_inserted(); |
| 849 | |
| 850 | assert_eq!(stats.total_operations(), 3); |
| 851 | assert!(stats.has_operations()); |
| 852 | } |
| 853 | |
| 854 | #[test] |
| 855 | fn test_stats_content_bytes() { |
nothing calls this directly
no test coverage detected