|
Currently this is more or less tested:
|
At interceptor class
|
@AroundConstruct expected behaviour
|
@PostConstruct expected behaviour
|
|
with Object return type
|
works (but returned value is ignored)
|
works (but returned value is ignored)
|
|
with Void return type
|
works
|
works
|
|
with invalid param count (>1)
|
fails with exception
|
fails with exception
|
|
with invalid param type
|
fails with exception
|
fails with exception
|
|
with invalid return type
|
fails with exception
|
fails with exception
|
|
without parameter
|
x
|
works but lifecycle callback is not invoked
|
|