()
| 1065 | |
| 1066 | #[test] |
| 1067 | fn test_log_clone() { |
| 1068 | let log = Log::new() |
| 1069 | .with_count(5) |
| 1070 | .with_view("test") |
| 1071 | .with_format(LogFormat::Short); |
| 1072 | let cloned = log.clone(); |
| 1073 | |
| 1074 | assert_eq!(log.count, cloned.count); |
| 1075 | assert_eq!(log.view, cloned.view); |
| 1076 | assert_eq!(log.format, cloned.format); |
| 1077 | } |
| 1078 | |
| 1079 | #[test] |
| 1080 | fn test_log_output_config_clone() { |
nothing calls this directly
no test coverage detected