for (String product : cartContents.keySet()) {
System.out.println(cartContents.get(product) + " " + product);
}
System.out.println("\nCheckout");
cart.checkout();
/* Try to access the cart after checkout */
try {
cart.getCartContents();
System.err.println("ERROR: The cart should not be available after Checkout!");