public void TriangularPrismTest()
        {
            SimpleGraph         pentaprism    = SimpleGraphFactory.MakePrism(3);
            SimpleQuotientGraph quotientGraph = new SimpleQuotientGraph(pentaprism);

            CheckParameters(quotientGraph, 1, 1, 1);
        }
        public void CubeTest()
        {
            SimpleGraph         cube          = SimpleGraphFactory.MakePrism(4);
            SimpleQuotientGraph quotientGraph = new SimpleQuotientGraph(cube);

            CheckParameters(quotientGraph, 1, 1, 1);
        }
        public void PentagonalPrismTest()
        {
            SimpleGraph         pentaprism    = SimpleGraphFactory.MakePrism(5);
            SimpleQuotientGraph quotientGraph = new SimpleQuotientGraph(pentaprism);

            CheckParameters(quotientGraph, 1, 1, 1);
        }