예제 #1
0
  @Test
  public void testSize() {
    Log.info(Log.FAC_TEST, "Starting testSize");

    Collection cd = new Collection();
    for (int i = 0; i < lrs.length; ++i) {
      cd.add(lrs[i]);
    }
    Assert.assertTrue(cd.size() == lrs.length);

    Log.info(Log.FAC_TEST, "Completed testSize");
  }