Ejemplo n.º 1
0
        public void PllTests()
        {
            OneLookLLCube cube = new OneLookLLCube();

            for (int k = 0; k < 72; k++)
            {
                cube.Solve();
                cube.SetUpPll(k);
                int pllNum = cube.GetPllNum();
                Assert.AreEqual(k, pllNum, "failed on position " + k);
            }
        }