Package org.junit.runners.model
Interface MemberValueConsumer<T>
- All Known Implementing Classes:
BlockJUnit4ClassRunner.RuleCollector
,ParentRunner.ClassRuleCollector
public interface MemberValueConsumer<T>
Represents a receiver for values of annotated fields/methods together with the declaring member.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
accept
(FrameworkMember<?> member, T value) Receives the next value and its declaring member.
-
Method Details
-
accept
Receives the next value and its declaring member.- Parameters:
member
- declaring member (FrameworkMethod
orFrameworkField
)value
- the value of the next member
-