Exemplo n.º 1
0
        static void Main(string[] args)
        {
            ICubeController cc = new TestCubeController();

            cc.DoMove(Move.L);
            Debug.Assert(cc.GetMoves().Count == 1);

            Console.WriteLine("Hello");
        }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            ICubeController cc = new TestCubeController();
            cc.DoMove(Move.L);
            Debug.Assert(cc.GetMoves().Count == 1);

            TestCubeAlgorithm testCubeAlgorithm = new TestCubeAlgorithm();
            testCubeAlgorithm.RunTest();
        }