summaryrefslogtreecommitdiff
path: root/tests/vtk_write.cpp
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2025-06-05 13:09:07 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2025-06-05 13:09:07 +0200
commit9e37ff62b668694f705a8d132469f40ead9f6f0f (patch)
treeac486a9b93376fb10ae966e65b9724e46f1b00d2 /tests/vtk_write.cpp
parent4a291705f46086d5adcf68de6d6d1441c4b9e4f9 (diff)
Dangling changes
Diffstat (limited to 'tests/vtk_write.cpp')
-rw-r--r--tests/vtk_write.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/vtk_write.cpp b/tests/vtk_write.cpp
index 49c9c52..b2e30f0 100644
--- a/tests/vtk_write.cpp
+++ b/tests/vtk_write.cpp
@@ -53,8 +53,12 @@ SAW_TEST("VTK Write test example"){
auto eov = lbm::impl::lbm_vtk_writer<sch::Array<sch::MacroStruct<sch::T,2>, 2>>::apply(sstream, cells);
SAW_EXPECT(eov.is_value(), "vtk writer failed to write");
+ // I want to print it to see it for myself. For now I have no tooling to more easily view associated and potentially generated files
std::cout<<sstream.str()<<std::endl;
+ static std::string_view comparison_str = "# vtk DataFile Version 3.0\nLBM File\nASCII\nDATASET STRUCTURED_POINTS\nSPACING 1.0 1.0 1.0\nORIGIN 0.0 0.0 0.0\nDIMENSIONS 2 2 1\nPOINT_DATA 4\n\nVECTORS velocity float\n0.5 -0.1 0\n0 0 0\n0 0 0\n0 0 0\nSCALARS pressure float\nLOOKUP_TABLE default\n1.1\n0\n0\n0\n";
+ SAW_EXPECT(sstream.str() == comparison_str, "Expected different encoding");
+
// using Type = typename parameter_pack_type<i,T...>::type;
}
}