@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);