()
| 1015 | |
| 1016 | #[test] |
| 1017 | fn test_options_max_vertices_zero() { |
| 1018 | let opts = FileOutputOptions::new().max_vertices(0); |
| 1019 | |
| 1020 | assert_eq!(opts.max_vertices, Some(0)); |
| 1021 | } |
| 1022 | |
| 1023 | #[test] |
| 1024 | fn test_options_flush_after_write() { |
nothing calls this directly
no test coverage detected