Exemplo n.º 1
0
        public void BoardFromStringTest()
        {
            Player_Accessor target = new Player_Accessor(); // TODO: Initialize to an appropriate value
            string          board  = ".......... .......... .......... .......... .......... .......... .......... .......... .......... .......... .......... .......... .......... .......... .......... .......... .......... .......... .......... zzzzzzzz..";

            int[,] actual;
            actual = target.BoardFromString(board);
            target.BoardArrayDebug(actual);
        }
Exemplo n.º 2
0
 public void BoardFromStringTest()
 {
     Player_Accessor target = new Player_Accessor(); // TODO: Initialize to an appropriate value
     string board = ".......... .......... .......... .......... .......... .......... .......... .......... .......... .......... .......... .......... .......... .......... .......... .......... .......... .......... .......... zzzzzzzz..";
     int[,] actual;
     actual = target.BoardFromString(board);
     target.BoardArrayDebug(actual);
 }