コード例 #1
0
ファイル: RowTests.java プロジェクト: Solenn1/google-refine
 @Test
 public void notEmptyRow() {
   Row row = new Row(1);
   row.setCell(0, new Cell("I'm not empty", null));
   Assert.assertFalse(row.isEmpty());
 }
コード例 #2
0
ファイル: RowTests.java プロジェクト: Solenn1/google-refine
 @Test
 public void emptyRow() {
   Row row = new Row(5);
   Assert.assertTrue(row.isEmpty());
 }