public void ThenEachNodeShouldBeConnectedToItself()
 {
     var n = _gm.NodeCount;
     for (var i = 0; i < n; ++i)
     {
         _gm.FindNode(i).Should().Be(i, "Node should initialize its value (set id) to the nodes index");
     }
 }