()
| 1007 | |
| 1008 | #[test] |
| 1009 | fn test_options_max_vertices_zero() { |
| 1010 | let opts = FileOutputOptions::new().max_vertices(0); |
| 1011 | |
| 1012 | assert_eq!(opts.max_vertices, Some(0)); |
| 1013 | } |
| 1014 | |
| 1015 | #[test] |
| 1016 | fn test_options_flush_after_write() { |
nothing calls this directly
no test coverage detected