()
| 769 | |
| 770 | #[test] |
| 771 | fn test_exceeds_limit_no_limit() { |
| 772 | let options = ApplyOptions::builder().max_operations(None).build(); |
| 773 | assert!(!options.exceeds_limit(0)); |
| 774 | assert!(!options.exceeds_limit(1000)); |
| 775 | assert!(!options.exceeds_limit(usize::MAX)); |
| 776 | } |
| 777 | |
| 778 | #[test] |
| 779 | fn test_exceeds_limit_with_limit() { |
nothing calls this directly
no test coverage detected