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