예제 #1
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);
 }
예제 #2
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());
 }