예제 #1
0
  @Test
  public void testGetCategories() throws Exception {
    categoryDao.save(category);

    Iterable<Category> lst = categoryDao.findAll();
    assertTrue(getIterableSize(lst) == 1);

    // Adding a second element
    Category cat2 = new Category();
    cat2.setName(CATEGOY_NAME + "2");
    cat2.setDescription(CATEGORY_DESCRIPTION + "2");
    cat2.setId((long) 882880);
    categoryDao.save(cat2);

    // Verifying that the second element has been added
    assertTrue(getIterableSize(categoryDao.findAll()) == 2);
  }
예제 #2
0
 /** create an instanciated object. The one declared as private field in the test class */
 private void loadCategory() {
   category = new Category();
   category.setId(new Random().nextLong());
   category.setName(ConstantUtils.CATEGOY_NAME);
   category.setDescription(ConstantUtils.CATEGORY_DESCRIPTION);
 }