/// Asserts that the given JSON string can be deserialized into the given type.
pub use assert_deserialized;
// #[cfg(test)]
// mod tests {
// use super::*;
// #[test]
// fn a() {
// let json = r#"
// "#;
// crate::test::assert_deserialized!(A, json);
// }
// #[test]
// fn b() {
// let json = r#"
// "#;
// crate::test::assert_deserialized!(B, json);
// }
// }