1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
use crate::json::array::float::JSONArrayOfFloats; #[test] fn json_to_vector() { let json_array = "[-2.2, 0.0 , 5.5]".to_string(); let boxed_parse = JSONArrayOfFloats::parse_as_list_f64(json_array); if boxed_parse.is_err() { // handle error } let _list : Vec<f64> = boxed_parse.unwrap(); } #[test] fn vector_to_json() { let json_array: Vec<f64> = vec![-2.2, 0.0, 5.5]; let result = JSONArrayOfFloats::to_json_from_list_f64(&json_array); if result.is_err() { // handle error } let _json_array = result.unwrap(); }