Package net.firstpartners.sample.multiple

Examples of net.firstpartners.sample.multiple.MultipleRulesExample


  @Test
  public final void testRunMultipleRulesExample() throws DroolsParserException, IOException, ClassNotFoundException {

    //Run the Rules Example, almost as if from the command line
    MultipleRulesExample thisSample = new MultipleRulesExample();
    CustomerOrder co =thisSample.runMultipleRulesExample();


    //Check the final co object to ensure that the rules have run as we expected
    assertNotNull(co);
    assertEquals(co.getInitialBalance(),2000);
View Full Code Here

TOP

Related Classes of net.firstpartners.sample.multiple.MultipleRulesExample

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.