Modification to Model Hibernate One to Many Tutorial (#1132)

* Modifications to model on Hibernate One to manyTutorial

* Modifications to model on Hibernate One to manyTutorial

* Modifications to model on Hibernate One to manyTutorial
This commit is contained in:
Chima Ejiofor
2017-02-08 16:35:33 +01:00
committed by maibin
parent c39a596981
commit 0bbfa1e10b
5 changed files with 4 additions and 68 deletions
@@ -63,9 +63,6 @@ public class HibernateOneToManyAnnotationMainTest {
cartItems = cart.getItems();
Assert.assertNull(cartItems);
Items item1 = new Items();
item1.setItemId("I10");
item1.setItemTotal(10);
item1.setQuantity(1);
item1.setCart(cart);
assertNotNull(item1);
Set<Items> itemsSet = new HashSet<Items>();