Package com.softserve.academy.food.entity

Examples of com.softserve.academy.food.entity.Category


  }
 
  @Test
  public void testGet()
  {
    categoryDao.add( new Category("Dessert") );
   
    assertEquals( cService.get(1).getName(), "Dessert" );
  }
View Full Code Here


  }

  @Test
  public void testAdd()
  {
    categoryDao.add( new Category("Dessert") );
   
    cService.add( new CategoryModel("Fist dish") );
   
    assertEquals( categoryDao.get(2).getName(), "Fist dish" );
  }
View Full Code Here

TOP

Related Classes of com.softserve.academy.food.entity.Category

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.