Package org.junit.runners.model
Interface MemberValueConsumer<T>
-
public interface MemberValueConsumer<T>
Represents a receiver for values of annotated fields/methods together with the declaring member.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
accept(FrameworkMember<?> member, T value)
Receives the next value and its declaring member.
-
-
-
Method Detail
-
accept
void accept(FrameworkMember<?> member, T value)
Receives the next value and its declaring member.- Parameters:
member
- declaring member (FrameworkMethod
orFrameworkField
)value
- the value of the next member
-
-