()
| 1392 | |
| 1393 | #[test] |
| 1394 | fn test_error_source_change_store() { |
| 1395 | use std::error::Error; |
| 1396 | |
| 1397 | let err: FileOutputError<std::io::Error> = FileOutputError::ChangeStore("test".to_string()); |
| 1398 | |
| 1399 | assert!(err.source().is_none()); |
| 1400 | } |
| 1401 | |
| 1402 | #[test] |
| 1403 | fn test_error_source_position_not_found() { |
nothing calls this directly
no test coverage detected