diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-07-04 16:32:14 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-07-04 16:32:14 +0200 |
commit | 40369c781e43282992e720efaaa99fa5e60c0d20 (patch) | |
tree | 3a862e006b000adf3aec77334a62eef8eb6215f4 /modules/codec/tests/forst.cpp | |
parent | 596964ba245e17444baa196c16b4531c03f7a4b2 (diff) |
Preparation work for loopback
Diffstat (limited to 'modules/codec/tests/forst.cpp')
-rw-r--r-- | modules/codec/tests/forst.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/codec/tests/forst.cpp b/modules/codec/tests/forst.cpp index 96c4dd0..28501c9 100644 --- a/modules/codec/tests/forst.cpp +++ b/modules/codec/tests/forst.cpp @@ -26,6 +26,10 @@ SAW_TEST("Codec Forst Info"){ SAW_EXPECT(depth == 0, "Layer info is wrong"); } { + uint64_t depth = impl::forst_codec_info<schema::String>::layers; + SAW_EXPECT(depth == 1, "Layer info is wrong"); + } + { uint64_t depth = impl::forst_codec_info<TestStruct>::layers; SAW_EXPECT(depth == 1, "Layer info is wrong"); } |