diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-06-12 15:04:42 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-06-12 15:04:42 +0200 |
commit | e4e49a117702945066e3e279fa0f005200400cb7 (patch) | |
tree | 3e9bab0804083461c9ef0732a47abba1fb8a9fdf /modules/codec-json/tests | |
parent | 6831edddd22d2d8dbb73c88fb612c0bdd5b8ba19 (diff) |
Separated Encoding and Storage approaches
Diffstat (limited to 'modules/codec-json/tests')
-rw-r--r-- | modules/codec-json/tests/codec-json.cpp | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/modules/codec-json/tests/codec-json.cpp b/modules/codec-json/tests/codec-json.cpp index d6492d2..dd8df8a 100644 --- a/modules/codec-json/tests/codec-json.cpp +++ b/modules/codec-json/tests/codec-json.cpp @@ -28,7 +28,7 @@ using TestStruct = Struct< SAW_TEST("UInt8 write"){ using namespace saw; - data<schema::UInt8, encode::Native<storage::Default>> native_int; + data<schema::UInt8, encode::Native, storage::Default> native_int; data<schema::UInt8, encode::Json> json_int; native_int.set(121); @@ -48,7 +48,7 @@ SAW_TEST("UInt8 write"){ SAW_TEST("UInt16 write"){ using namespace saw; - data<schema::UInt16, encode::Native<storage::Default>> native_int; + data<schema::UInt16, encode::Native, storage::Default> native_int; data<schema::UInt16, encode::Json> json_int; native_int.set(24413); @@ -68,7 +68,7 @@ SAW_TEST("UInt16 write"){ SAW_TEST("UInt32 write"){ using namespace saw; - data<schema::UInt32, encode::Native<storage::Default>> native_int; + data<schema::UInt32, encode::Native, storage::Default> native_int; data<schema::UInt32, encode::Json> json_int; native_int.set(44123); @@ -88,7 +88,7 @@ SAW_TEST("UInt32 write"){ SAW_TEST("UInt64 write"){ using namespace saw; - data<schema::UInt64, encode::Native<storage::Default>> native_int; + data<schema::UInt64, encode::Native, storage::Default> native_int; data<schema::UInt64, encode::Json> json_int; native_int.set(243345543); @@ -108,7 +108,7 @@ SAW_TEST("UInt64 write"){ SAW_TEST("Int8 write"){ using namespace saw; - data<schema::Int8, encode::Native<storage::Default>> native_int; + data<schema::Int8, encode::Native, storage::Default> native_int; data<schema::Int8, encode::Json> json_int; native_int.set(-121); @@ -128,7 +128,7 @@ SAW_TEST("Int8 write"){ SAW_TEST("Int16 write"){ using namespace saw; - data<schema::Int16, encode::Native<storage::Default>> native_int; + data<schema::Int16, encode::Native, storage::Default> native_int; data<schema::Int16, encode::Json> json_int; native_int.set(-24413); @@ -148,7 +148,7 @@ SAW_TEST("Int16 write"){ SAW_TEST("Int32 write"){ using namespace saw; - data<schema::Int32, encode::Native<storage::Default>> native_int; + data<schema::Int32, encode::Native, storage::Default> native_int; data<schema::Int32, encode::Json> json_int; native_int.set(44123); @@ -168,7 +168,7 @@ SAW_TEST("Int32 write"){ SAW_TEST("Int64 write"){ using namespace saw; - data<schema::Int64, encode::Native<storage::Default>> native_int; + data<schema::Int64, encode::Native, storage::Default> native_int; data<schema::Int64, encode::Json> json_int; native_int.set(243345543); @@ -188,7 +188,7 @@ SAW_TEST("Int64 write"){ SAW_TEST("String write and read"){ using namespace saw; - data<schema::String, encode::Native<storage::Default>> nat_str; + data<schema::String, encode::Native, storage::Default> nat_str; data<schema::String, encode::Json> json_str; nat_str.set("foo"); @@ -215,7 +215,7 @@ SAW_TEST("String write and read"){ SAW_TEST("Tuple read and write"){ using namespace saw; - data<schema::TestTuple, encode::Native<storage::Default>> native_tup; + data<schema::TestTuple, encode::Native, storage::Default> native_tup; data<schema::TestTuple, encode::Json> json_tup; auto& nat_zero = native_tup.template get<0>(); @@ -244,7 +244,7 @@ SAW_TEST("Tuple read and write"){ SAW_TEST("Array write"){ using namespace saw; - data<schema::TestArray, encode::Native<storage::Default>> native{3u}; + data<schema::TestArray, encode::Native, storage::Default> native{3u}; data<schema::TestArray, encode::Json> json; native.at(0).set("foo"); @@ -264,7 +264,7 @@ SAW_TEST("Array write"){ SAW_TEST("Three Dim Array write and read"){ using namespace saw; - data<schema::TestMultiArray, encode::Native<storage::Default>> native{2,1,2}; + data<schema::TestMultiArray, encode::Native, storage::Default> native{2,1,2}; data<schema::TestMultiArray, encode::Json> json; native.at(0,0,0).set("multi"); @@ -294,7 +294,7 @@ SAW_TEST("Three Dim Array write and read"){ SAW_TEST("Struct read and write"){ using namespace saw; - data<schema::TestStruct, encode::Native<storage::Default>> native; + data<schema::TestStruct, encode::Native, storage::Default> native; data<schema::TestStruct, encode::Json> json; native.get<"foo">().set(5); @@ -319,7 +319,7 @@ SAW_TEST("Struct read and write"){ SAW_TEST("Int8 read"){ using namespace saw; - data<schema::Int8, encode::Native<storage::Default>> native_int; + data<schema::Int8, encode::Native, storage::Default> native_int; data<schema::Int8, encode::Json> json_int{"43"}; codec<schema::Int8, encode::Json> json_codec; @@ -337,7 +337,7 @@ SAW_TEST("Int8 read"){ SAW_TEST("Int64 read"){ using namespace saw; - data<schema::Int64, encode::Native<storage::Default>> native_int; + data<schema::Int64, encode::Native, storage::Default> native_int; data<schema::Int64, encode::Json> json_int{"-453"}; codec<schema::Int64, encode::Json> json_codec; @@ -355,7 +355,7 @@ SAW_TEST("Int64 read"){ SAW_TEST("Tuple Pretty Encode and Decode"){ using namespace saw; - data<schema::TestTuple, encode::Native<storage::Default>> native_tup; + data<schema::TestTuple, encode::Native, storage::Default> native_tup; data<schema::TestTuple, encode::Json> json_tup; auto& nat_zero = native_tup.template get<0>(); |