include!("./use.rs");
include!("./macro.rs");
include!("./data.rs");
#[test]
fn encode() {
for t in TEST {
test_encode!(String,String::from(t.0),String::from(t.1));
}
}
#[test]
fn decode() {
for t in TEST {
test_decode!(String,String::from(t.1),String::from(t.0));
}
}