Skip to content

Commit

Permalink
[incubator-kie-issues#781] Benchmarking infixopnode
Browse files Browse the repository at this point in the history
  • Loading branch information
BAMOE CI committed Dec 18, 2023
1 parent 7068e35 commit 61bc6ba
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@
@Warmup(iterations = 30, time = 200, timeUnit = TimeUnit.MILLISECONDS)
public class FEELInfixOpBenchmark extends AbstractFEELBenchmark {

@Param({"foo >= bar * 10", "y / 5 * ( x )", "y + 5 ** 3", "10 * x", "foo < 10 and bar = \"x\" or baz"})
@Param({"30 >= 20 * 10", "16 / 5 * ( 7 )", "9 + 5 ** 3", "10 * 32", "34 < 10 and 43 = \"32\" or 23"})
private String expression;

@Override
public String getExpression() {
return expression;
}

}

0 comments on commit 61bc6ba

Please sign in to comment.