Exemplo n.º 1
0
            public void New_Graph_Next_Node_Index_Is_0()
            {
                Graph g = new Graph();

                Assert.AreEqual(g.NextNodeIndex, 0);
            }
Exemplo n.º 2
0
            public void New_Graph_Has_No_Nodes()
            {
                Graph g = new Graph();

                Assert.AreEqual(g.Nodes.Count, 0);
            }