@Test
 public void getAllCategory() {
   List<Category> css = cs.getAll();
   for (Category c : css) {
     System.out.println(c.getCategoryName());
   }
 }