diff --git a/src/Unittests/unittests_smart_handles.cc b/src/Unittests/unittests_smart_handles.cc index 2979b327..3a098fc1 100644 --- a/src/Unittests/unittests_smart_handles.cc +++ b/src/Unittests/unittests_smart_handles.cc @@ -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); + } +} + + }