()
| 1050 | |
| 1051 | #[test] |
| 1052 | fn test_options_clone() { |
| 1053 | let opts = FileOutputOptions::new().max_vertices(100); |
| 1054 | let cloned = opts; |
| 1055 | |
| 1056 | assert_eq!(opts, cloned); |
| 1057 | } |
| 1058 | |
| 1059 | #[test] |
| 1060 | fn test_options_debug() { |
nothing calls this directly
no test coverage detected