()
| 856 | |
| 857 | #[test] |
| 858 | fn test_clone() { |
| 859 | let options = ApplyOptions::builder().max_operations(Some(100)).build(); |
| 860 | let cloned = options.clone(); |
| 861 | assert_eq!(options, cloned); |
| 862 | } |
| 863 | |
| 864 | #[test] |
| 865 | fn test_debug_format() { |
nothing calls this directly
no test coverage detected