lofty-rs/lofty/tests/fuzz/aacfile_read_from.rs
Serial 069b7bfc97 Tests: Switch to test_log
We have really good debug/trace logs now. Having them available for test failures is a huge help.
2024-09-01 19:26:30 -04:00

11 lines
302 B
Rust

use lofty::aac::AacFile;
use lofty::config::ParseOptions;
use lofty::file::AudioFile;
#[test_log::test]
fn panic1() {
let mut reader = crate::get_reader(
"aacfile_read_from/01 - aalborg_IDX_9_RAND_168952727934877251846138.mp3",
);
let _ = AacFile::read_from(&mut reader, ParseOptions::new());
}