Maraiah/tests/epnt.rs

15 lines
340 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!("data/epnt.in");
const OUTPUT: [map::Point; 54] = include!("data/epnt.out");
// EOF