()
| 664 | |
| 665 | #[test] |
| 666 | fn test_builder_max_operations() { |
| 667 | let options = ApplyOptions::builder().max_operations(Some(100)).build(); |
| 668 | assert_eq!(options.max_operations(), Some(100)); |
| 669 | } |
| 670 | |
| 671 | #[test] |
| 672 | fn test_builder_max_operations_none() { |
nothing calls this directly
no test coverage detected