public void VerticesGet <TVertex, TEdge>([PexAssumeUnderTest] UndirectedGraph <TVertex, TEdge> target)
     where TEdge : IEdge <TVertex>
 {
     // TODO: add assertions to method UndirectedGraphTVertexTEdgeTest.VerticesGet(UndirectedGraph`2<!!0,!!1>)
     IEnumerable <TVertex> result = target.Vertices;
 }
 public void TrimEdgeExcess <TVertex, TEdge>([PexAssumeUnderTest] UndirectedGraph <TVertex, TEdge> target)
     where TEdge : IEdge <TVertex>
 {
     // TODO: add assertions to method UndirectedGraphTVertexTEdgeTest.TrimEdgeExcess(UndirectedGraph`2<!!0,!!1>)
     target.TrimEdgeExcess();
 }
 public void IsVerticesEmptyGet <TVertex, TEdge>([PexAssumeUnderTest] UndirectedGraph <TVertex, TEdge> target)
     where TEdge : IEdge <TVertex>
 {
     // TODO: add assertions to method UndirectedGraphTVertexTEdgeTest.IsVerticesEmptyGet(UndirectedGraph`2<!!0,!!1>)
     bool result = target.IsVerticesEmpty;
 }
 public void EdgeCountGet <TVertex, TEdge>([PexAssumeUnderTest] UndirectedGraph <TVertex, TEdge> target)
     where TEdge : IEdge <TVertex>
 {
     // TODO: add assertions to method UndirectedGraphTVertexTEdgeTest.EdgeCountGet(UndirectedGraph`2<!!0,!!1>)
     int result = target.EdgeCount;
 }
 public void ClearAdjacentEdges <TVertex, TEdge>([PexAssumeUnderTest] UndirectedGraph <TVertex, TEdge> target, TVertex v)
     where TEdge : IEdge <TVertex>
 {
     // TODO: add assertions to method UndirectedGraphTVertexTEdgeTest.ClearAdjacentEdges(UndirectedGraph`2<!!0,!!1>, !!0)
     target.ClearAdjacentEdges(v);
 }
 public void AllowParallelEdgesGet <TVertex, TEdge>([PexAssumeUnderTest] UndirectedGraph <TVertex, TEdge> target)
     where TEdge : IEdge <TVertex>
 {
     // TODO: add assertions to method UndirectedGraphTVertexTEdgeTest.AllowParallelEdgesGet(UndirectedGraph`2<!!0,!!1>)
     bool result = target.AllowParallelEdges;
 }