()
| 1364 | |
| 1365 | #[test] |
| 1366 | fn test_detect_encoding_empty() { |
| 1367 | let content = b""; |
| 1368 | let encoding = detect_encoding(content); |
| 1369 | |
| 1370 | assert_eq!(encoding, Encoding::Utf8); |
| 1371 | } |
| 1372 | |
| 1373 | // Binary Detection Tests |
| 1374 |
nothing calls this directly
no test coverage detected