Example #1
0
 @Test
 public void test_constructor() {
   for (int l = 0; l < m.nlines(); l++) {
     for (int c = 0; c < m.ncols(); c++) {
       assertArrayEquals(
           new Integer[] {(int) l, (int) c, dok.get(l, c)},
           new Integer[] {(int) l, (int) c, m.get(l, c)});
     }
   }
 }