()
| 1038 | |
| 1039 | #[test] |
| 1040 | fn test_options_chaining() { |
| 1041 | let opts = FileOutputOptions::new() |
| 1042 | .include_deleted(true) |
| 1043 | .max_vertices(5000) |
| 1044 | .flush_after_write(false); |
| 1045 | |
| 1046 | assert!(opts.include_deleted); |
| 1047 | assert_eq!(opts.max_vertices, Some(5000)); |
| 1048 | assert!(!opts.flush_after_write); |
| 1049 | } |
| 1050 | |
| 1051 | #[test] |
| 1052 | fn test_options_clone() { |
nothing calls this directly
no test coverage detected