Exemplo n.º 1
0
 @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());
 }
Exemplo n.º 2
0
 @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);
 }