Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. @Test
  2. public void testGetCell(){
  3.  
  4. //Arrange
  5. byte[][] testBoard6 = {
  6. {1, 1, 0, 0},
  7. {1, 1, 0, 0},
  8. {1, 1, 0, 0},
  9. {0, 0, 0, 0},
  10. };
  11.  
  12. //Act
  13. board.setBoard(testBoard6);
  14. Cell actual = board.getCell(1, 1);
  15. boolean expected = true;
  16.  
  17. Assert
  18. org.junit.Assert.assertTrue(actual.getState());
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement