()
| 815 | |
| 816 | #[test] |
| 817 | fn test_display_with_max() { |
| 818 | let options = ApplyOptions::builder().max_operations(Some(500)).build(); |
| 819 | let display = options.to_string(); |
| 820 | assert!(display.contains("500")); |
| 821 | } |
| 822 | |
| 823 | // Serialization Tests |
| 824 |
nothing calls this directly
no test coverage detected