Package org.xrace.view.session

Examples of org.xrace.view.session.Cart.clear()


    CartItemInscription cartItemInscription = new CartItemInscription(
        composantInscription1);

    cart.add(cartItemInscription, getRabaisEvenementService());

    cart.clear();

    Assert.assertEquals(0.0, cart.getSousTotal().doubleValue(), 0.0);
    Assert.assertEquals(0.0, cart.getEscompte().doubleValue(), 0.0);
    Assert.assertEquals(0.0, cart.getTotal().doubleValue(), 0.0);
    Assert.assertEquals(0, cart.getItems().size());
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.