diff options
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"); } |