Removed debug output

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@930 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Jan Möbius
2013-08-15 08:42:10 +00:00
parent 3c452c89a8
commit 68cf740954

View File

@@ -43,12 +43,9 @@ TEST_F(OpenMeshMeshDual, Dualize) {
dualMesh = OpenMesh::Util::MeshDual(mesh_);
std::cerr << "Original has " << mesh_.n_vertices() << " , " << mesh_.n_edges() << " , " << mesh_.n_faces() << std::endl;
EXPECT_EQ(15048u, dualMesh->n_vertices()) << "The number of vertices after decimation is not correct!";
EXPECT_EQ(22572u, dualMesh->n_edges()) << "The number of edges after decimation is not correct!";
EXPECT_EQ(7526u, dualMesh->n_faces()) << "The number of faces after decimation is not correct!";
EXPECT_EQ(15048u, dualMesh->n_vertices()) << "The number of vertices after dual computation is not correct!";
EXPECT_EQ(22572u, dualMesh->n_edges()) << "The number of edges after dual computation is not correct!";
EXPECT_EQ(7526u, dualMesh->n_faces()) << "The number of faces after dual computation is not correct!";
delete(dualMesh);
}