Maraiah/tests/epnt.rs

13 lines
302 B
Rust

use maraiah::{durandal::{bin, fixed::*}, marathon::map};
#[test]
fn read_epnt_must_process_this()
{
assert_eq!(bin::rd_array(INPUT, map::read_epnt).unwrap(), OUTPUT.to_vec());
}
const INPUT: &'static [u8] = include_bytes!("epnt.in");
const OUTPUT: [map::Point; 54] = include!("epnt.out");
// EOF