()
| 786 | |
| 787 | #[test] |
| 788 | fn test_exceeds_limit_zero() { |
| 789 | let options = ApplyOptions::builder().max_operations(Some(0)).build(); |
| 790 | assert!(options.exceeds_limit(0)); |
| 791 | } |
| 792 | |
| 793 | // Display Tests |
| 794 |
nothing calls this directly
no test coverage detected