// KnowledgeRuntimeLogger logger = KnowledgeRuntimeLoggerFactory.newConsoleLogger(ksession);
}
@Test
public void testExecution() {
Customer johnInternational = new Customer("John Z", CustomerType.INTERNATIONAL);
Customer annaInternational = new Customer("Anna M", CustomerType.INTERNATIONAL);
Customer maryInternational = new Customer("Mary C", CustomerType.NATIONAL);
Customer jesseNational = new Customer("Jessy D", CustomerType.NATIONAL);
Order internationalExpressOrder = new Order();
internationalExpressOrder.setCustomer(johnInternational);
internationalExpressOrder.setShipping(ShippingType.EXPRESS);
internationalExpressOrder.setAmount(100);