()
| 1362 | |
| 1363 | #[test] |
| 1364 | fn test_error_debug() { |
| 1365 | let err: FileOutputError<std::io::Error> = FileOutputError::ChangeStore("test".to_string()); |
| 1366 | let debug = format!("{:?}", err); |
| 1367 | |
| 1368 | assert!(debug.contains("ChangeStore")); |
| 1369 | } |
| 1370 | |
| 1371 | #[test] |
| 1372 | fn test_error_source_graph() { |
nothing calls this directly
no test coverage detected