()
| 1000 | |
| 1001 | #[test] |
| 1002 | fn test_options_max_vertices() { |
| 1003 | let opts = FileOutputOptions::new().max_vertices(1000); |
| 1004 | |
| 1005 | assert_eq!(opts.max_vertices, Some(1000)); |
| 1006 | } |
| 1007 | |
| 1008 | #[test] |
| 1009 | fn test_options_max_vertices_zero() { |
nothing calls this directly
no test coverage detected