Package org.drools.Cheesery

Examples of org.drools.Cheesery.Maturity


                new MockWorkingMemory());
        Cheesery listChesse = new Cheesery();
        listChesse.setTotalAmount(1000);
        runner.getPopulatedData().put("cheese",
                listChesse);
        Maturity m = new Maturity();
        runner.getPopulatedData().put("m",
                m);
        CallMethod mCall = new CallMethod();
        mCall.setVariable("cheese");
        mCall.setMethodName("setGoodMaturity");
View Full Code Here


                new MockWorkingMemory());
        Cheesery listChesse = new Cheesery();
        listChesse.setTotalAmount(1000);
        runner.getPopulatedData().put("cheese",
                listChesse);
        Maturity m = new Maturity("veryYoung");
        runner.getPopulatedData().put("m",
                m);
        CallMethod mCall = new CallMethod();
        mCall.setVariable("cheese");
        mCall.setMethodName("setAgeToMaturity");
        CallFieldValue field = new CallFieldValue();
        field.value = "=m";
        mCall.addFieldValue(field);
        CallFieldValue field2 = new CallFieldValue();
        field2.value = "veryold";
        mCall.addFieldValue(field2);
        runner.executeMethodOnObject(mCall,
                listChesse);
        assertTrue(m.getAge().equals("veryold"));
    }
View Full Code Here

                new MockWorkingMemory());
        Cheesery listChesse = new Cheesery();
        listChesse.setTotalAmount(1000);
        runner.getPopulatedData().put("cheese",
                listChesse);
        Maturity m = new Maturity();
        runner.getPopulatedData().put("m",
                m);
        CallMethod mCall = new CallMethod();
        mCall.setVariable("cheese");
        mCall.setMethodName("setGoodMaturity");
View Full Code Here

                new MockWorkingMemory());
        Cheesery listChesse = new Cheesery();
        listChesse.setTotalAmount(1000);
        runner.getPopulatedData().put("cheese",
                listChesse);
        Maturity m = new Maturity("veryYoung");
        runner.getPopulatedData().put("m",
                m);
        CallMethod mCall = new CallMethod();
        mCall.setVariable("cheese");
        mCall.setMethodName("setAgeToMaturity");
        CallFieldValue field = new CallFieldValue();
        field.value = "=m";
        mCall.addFieldValue(field);
        CallFieldValue field2 = new CallFieldValue();
        field2.value = "veryold";
        mCall.addFieldValue(field2);
        runner.executeMethodOnObject(mCall,
                listChesse);
        assertTrue(m.getAge().equals("veryold"));
    }
View Full Code Here

TOP

Related Classes of org.drools.Cheesery.Maturity

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.