upgrade to 7.13.0.Final

This commit is contained in:
Nicolas Héron 2018-10-21 15:45:10 +02:00
commit d556f24060
35 changed files with 661 additions and 905 deletions

View file

@ -13,7 +13,7 @@ import droolscours.util.OutputDisplay;
global OutputDisplay showResult;
rule "Account group1"
rule "Account group1 4"
ruleflow-group "Group1"
when
Account( )
@ -21,7 +21,7 @@ rule "Account group1"
showResult.showText("Account in Group1");
end
rule "Account group2"
rule "Account group2 4"
ruleflow-group "Group2"
when
Account( )

View file

@ -18,7 +18,7 @@ rule "start process"
kcontext.getKieRuntime().startProcess("RF3");
end
rule "Account group1"
rule "Account group1 4a"
ruleflow-group "Group1"
when
Account(balance > 0 )
@ -26,7 +26,7 @@ rule "Account group1"
showResult.showText("Account in Group1 > 1000 ");
end
rule "Account group2"
rule "Account group2 4a"
ruleflow-group "Group2"
when
Account( )

View file

@ -28,6 +28,8 @@ public class Testlesson4 {
public void tearDown() throws Exception {
System.out.println("------------After ------------");
}
@Test
public void testRuleFlow1() {