diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-04-20 17:12:55 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-04-20 17:12:55 +0200 |
commit | 0d32f9b2c73690fa188d0f5920dfa9cbe3005200 (patch) | |
tree | 7728773c6309e5977fe7d0efd1c718c33147316b /modules/codec-unit/tests | |
parent | d659724e48ce4a703a99b3414b97d582da7cd173 (diff) |
Added Unit printing
Diffstat (limited to 'modules/codec-unit/tests')
-rw-r--r-- | modules/codec-unit/tests/codec-unit.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/codec-unit/tests/codec-unit.cpp b/modules/codec-unit/tests/codec-unit.cpp index 99645bd..6ffc4fc 100644 --- a/modules/codec-unit/tests/codec-unit.cpp +++ b/modules/codec-unit/tests/codec-unit.cpp @@ -3,6 +3,7 @@ #include <forstio/codec/schema.hpp> #include "../c++/unit.hpp" +#include "../c++/unit_print.hpp" namespace { namespace sch { @@ -60,4 +61,9 @@ SAW_TEST("Codec Unit/Division"){ SAW_EXPECT(c == data<sch::Scalar<sch::Int64>>{5u}, "Expected result 5"); } + +SAW_TEST("Codec Unit/Print"){ + using namespace saw; + // TODO +} } |