예제 #1
0
파일: Test.cs 프로젝트: thinrichs/Othello
 public void nwbCountsAsValidBlackMove()
 {
     MoveFinder mf =  new MoveFinder(new Board(Board.InitialState), Colors.Black);
     Assert.IsTrue(mf.RowIsValid("nwb"));
 }
예제 #2
0
파일: Test.cs 프로젝트: thinrichs/Othello
 public void nbwCountsAsValidWhiteMove()
 {
     MoveFinder mf = new MoveFinder(new Board(Board.InitialState), Colors.White);
     Assert.IsTrue(mf.RowIsValid("nbw"));
 }