Searched refs:str_abnormal (Results 1 – 1 of 1) sorted by relevance
/ohos5.0/commonlibrary/rust/ylong_json/src/ |
H A D | deserializer.rs | 1089 let str_abnormal = r#"{"int":1,"seq":["abcd","efgh"],"tup":[1,2,3]"#; in ut_deserialize_struct() localVariable 1090 let res = from_str::<Test>(str_abnormal); in ut_deserialize_struct() 1094 let str_abnormal = r#"{"int":1 "seq":["abcd","efgh"],"tup":[1,2,3]"#; in ut_deserialize_struct() localVariable 1095 let res = from_str::<Test>(str_abnormal); in ut_deserialize_struct() 1099 let str_abnormal = r#"{"int":1, "seq":["abcd","efgh",],"tup":[1,2,3]"#; in ut_deserialize_struct() localVariable 1100 let res = from_str::<Test>(str_abnormal); in ut_deserialize_struct() 1104 let str_abnormal = r#"{"int":1, "seq":["abcd","efgh"],"tup" [1,2,3]"#; in ut_deserialize_struct() localVariable 1105 let res = from_str::<Test>(str_abnormal); in ut_deserialize_struct() 1109 let str_abnormal = r#"{"it":1, "sq" : ["abcd","efgh"],"tp": [1,2,3]"#; in ut_deserialize_struct() localVariable 1110 let res = from_str::<Test>(str_abnormal); in ut_deserialize_struct()
|