Esempio n. 1
0
 @Test
 public void notEmptyRow() {
   Row row = new Row(1);
   row.setCell(0, new Cell("I'm not empty", null));
   Assert.assertFalse(row.isEmpty());
 }
Esempio n. 2
0
 @Test
 public void emptyRow() {
   Row row = new Row(5);
   Assert.assertTrue(row.isEmpty());
 }