()
| 1042 | |
| 1043 | #[test] |
| 1044 | fn test_options_clone() { |
| 1045 | let opts = FileOutputOptions::new().max_vertices(100); |
| 1046 | let cloned = opts; |
| 1047 | |
| 1048 | assert_eq!(opts, cloned); |
| 1049 | } |
| 1050 | |
| 1051 | #[test] |
| 1052 | fn test_options_debug() { |
nothing calls this directly
no test coverage detected