コード例 #1
0
ファイル: ColTest.java プロジェクト: jamesqiu/wr3
 @Test
 public void create() {
   col = new Col(new Row(5));
   col.head(new Cell("БъЬт1"));
   assertNotNull(col);
   Row row = col.asRow();
   row.cell(0, new Cell("hello"));
   assertEquals(5, row.length());
 }
コード例 #2
0
ファイル: ColTest.java プロジェクト: jamesqiu/wr3
 @Test
 public void as() {
   Cell cell = new Cell("БъЬт1");
   col = new Col(new Row(10)).head(cell);
   Row row = col.asRow();
   row.add(0, cell);
 }