Interface PrepareInterceptor
-
public interface PrepareInterceptorPrepare Interceptor to custom test before persistence.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidprepare(TestElementWrapper<?> testElementWrapper)prepare the input node.booleansupport(TestElementWrapper<?> testElementWrapper)Check if this interceptor support the node in input.
-
-
-
Method Detail
-
support
boolean support(TestElementWrapper<?> testElementWrapper)
Check if this interceptor support the node in input.- Parameters:
testElementWrapper- node.- Returns:
- true if this interceptor support this node.
-
prepare
void prepare(TestElementWrapper<?> testElementWrapper)
prepare the input node.- Parameters:
testElementWrapper- node.
-
-