Added tests for Jakarta expression injection

This commit is contained in:
Artem Smotrakov
2021-03-21 20:36:47 +03:00
parent 73e940de74
commit adb1ed380a
16 changed files with 223 additions and 11 deletions

View File

@@ -0,0 +1,6 @@
package javax.el;
public class ValueExpression {
public Object getValue(ELContext context) { return null; }
public void setValue(ELContext context, Object value) {}
}