()
| 734 | |
| 735 | #[test] |
| 736 | fn test_parse_string_array() { |
| 737 | let json = r#"["a","b","c"]"#; |
| 738 | let arr = parse_string_array(json); |
| 739 | assert_eq!(arr, vec!["a", "b", "c"]); |
| 740 | } |
| 741 | |
| 742 | #[test] |
| 743 | fn test_hash_round_trip() { |
nothing calls this directly
no test coverage detected