Class MethodBasedTestDescriptor.MethodInfo
- java.lang.Object
-
- org.junit.jupiter.engine.descriptor.MethodBasedTestDescriptor.MethodInfo
-
- Enclosing class:
- MethodBasedTestDescriptor
private static class MethodBasedTestDescriptor.MethodInfo extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.List<DiscoveryIssue>discoveryIssuesprivate java.util.Set<TestTag>tagsSet of method-level tags; does not contain tags from parent.private java.lang.Class<?>testClassprivate java.lang.reflect.MethodtestMethod
-
Constructor Summary
Constructors Constructor Description MethodInfo(java.lang.Class<?> testClass, java.lang.reflect.Method testMethod)
-
-
-
Field Detail
-
discoveryIssues
private final java.util.List<DiscoveryIssue> discoveryIssues
-
testClass
private final java.lang.Class<?> testClass
-
testMethod
private final java.lang.reflect.Method testMethod
-
tags
private final java.util.Set<TestTag> tags
Set of method-level tags; does not contain tags from parent.
-
-