Fix heatmap issue and implement per round analysis

This commit is contained in:
Lol3rrr
2024-10-08 23:15:42 +02:00
parent 4353de4455
commit 539adecf5d
24 changed files with 58455 additions and 335 deletions

View File

@@ -0,0 +1,14 @@
use analysis::perround;
use pretty_assertions::assert_eq;
#[test]
fn perround_nuke() {
let path = concat!(env!("CARGO_MANIFEST_DIR"), "/../testfiles/nuke.dem");
dbg!(path);
let input_bytes = std::fs::read(path).unwrap();
let result = perround::parse(&input_bytes).unwrap();
dbg!(&result);
assert_eq!(21, result.rounds.len());
}