1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/json/json_struct_option_test.v
2023-03-29 18:45:41 +02:00

47 lines
760 B
V

import json
pub struct MyStruct[T] {
pub mut:
result ?T
id string
}
fn test_gn_struct_string() ! {
a := MyStruct[string]{
result: 'test'
id: 'some id'
}
encoded_string := json.encode(a)
dump(encoded_string)
test := json.decode(MyStruct[string], encoded_string)!
dump(test)
assert a == test
}
fn test_gn_struct_int() ! {
a := MyStruct[int]{
result: 1
id: 'some id'
}
encoded_string := json.encode(a)
dump(encoded_string)
test := json.decode(MyStruct[int], encoded_string)!
dump(test)
assert a == test
}
fn test_gn_struct_f64() ! {
a := MyStruct[f64]{
result: 1.2
id: 'some id'
}
encoded_string := json.encode(a)
dump(encoded_string)
test := json.decode(MyStruct[f64], encoded_string)!
dump(test)
assert a == test
}