add test to check if old api works with new api

This commit is contained in:
Max Lyon
2019-10-17 09:20:06 +02:00
parent da233b391e
commit 81f3fcc2c1

View File

@@ -461,4 +461,16 @@ TEST_F(OpenMeshSmartHandles, Performance)
} }
/* Mix old and new api
*/
TEST_F(OpenMeshSmartHandles, MixOldAndNew)
{
for (auto heh : mesh_.halfedges())
{
heh = mesh_.opposite_halfedge_handle(heh);
}
}
} }