コード例 #1
0
ファイル: StudentTests.java プロジェクト: paulah/code-samples
 @Test
 public void testMoreWhitePieces() {
   Othello o = new Othello();
   o.setEntry(Piece.WHITE, 0, 0);
   assertTrue(o.moreWhitePieces());
 }
コード例 #2
0
ファイル: StudentTests.java プロジェクト: paulah/code-samples
 @Test
 public void testSetEntry() {
   Othello o = new Othello();
   o.setEntry(Piece.WHITE, 1, 2);
   assertEquals(Piece.WHITE, o.getEntry(1, 2));
 }