]
Luca Molteni closed DROOLS-3559.
--------------------------------
Resolution: Duplicate Issue
executable-model misses to raise an error for a non-exisiting method
with Mvel dialect
--------------------------------------------------------------------------------------
Key: DROOLS-3559
URL:
https://issues.jboss.org/browse/DROOLS-3559
Project: Drools
Issue Type: Bug
Components: executable model
Affects Versions: 7.16.0.Final
Reporter: Toshiya Kobayashi
Assignee: Luca Molteni
Priority: Major
Labels: support
When a rule has a non-existing method in RHS modify block with mvel dialect,
executable-model misses to raise an error so the rule is compiled.
{noformat}
rule R
when
$p : Person()
then
modify($p) {likes = nonExistingMethod()};
end
{noformat}