()
| 853 | |
| 854 | #[test] |
| 855 | fn test_stats_content_bytes() { |
| 856 | let mut stats = ApplyStats::new(); |
| 857 | stats.add_content_bytes(100); |
| 858 | stats.add_content_bytes(50); |
| 859 | assert_eq!(stats.content_bytes_processed(), 150); |
| 860 | } |
| 861 | |
| 862 | #[test] |
| 863 | fn test_stats_conflicts() { |
nothing calls this directly
no test coverage detected