From c8018f6862b1b9c8964e41c5d85cc1de714e6934 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= Date: Mon, 27 Feb 2023 14:35:51 +0100 Subject: [PATCH] Debug output --- src/Unittests/unittests_read_write_PLY.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Unittests/unittests_read_write_PLY.cc b/src/Unittests/unittests_read_write_PLY.cc index b60ff406..362ce548 100644 --- a/src/Unittests/unittests_read_write_PLY.cc +++ b/src/Unittests/unittests_read_write_PLY.cc @@ -532,8 +532,10 @@ TEST_F(OpenMeshReadWritePLY, LoadPLYFromMeshLabWithFaceTexCoord) { mesh_.get_property_handle(property, "TextureMapping"); EXPECT_EQ(mesh_.property(property).size(), 2u) << "Wrong texture number"; EXPECT_EQ(mesh_.property(property).count(0), 1u) << "Could not find texture with id 0"; + std::cerr << "DEBUGGING OUTPUT : " << std::endl; std::cerr << mesh_.property(property)[0] << std::endl; std::cerr << mesh_.property(property)[1] << std::endl; + std::cerr << "DEBUGGING OUTPUT : " << std::endl; EXPECT_TRUE((mesh_.property(property)[0] == std::string("tex_0.jpg"))) << "Wrong texture name"; EXPECT_EQ(mesh_.property(property).count(1), 1u) << "Could not find texture with id 1"; EXPECT_TRUE((mesh_.property(property)[1] == std::string("tex_1.jpg"))) << "Wrong texture name";