public void AllPathsTest()
        {
            List <List <char> > paths = GraphSearch.AllPaths(Graph.MakeSampleGraph());

            Assert.AreEqual(3, paths.Count);
        }