Package org.gradle.tooling.events.test
Interface JvmTestOperationDescriptor
- All Superinterfaces:
OperationDescriptor,TestOperationDescriptor
Describes a test that runs on the JVM and for which an event has occurred. At least
a suite name, class name, or method name is available for each JVM test.
- Since:
- 2.4
-
Method Summary
Modifier and TypeMethodDescription@Nullable StringReturns the name of the test class, if any.Returns what kind of test this is.@Nullable StringReturns the name of the test method, if any.Returns information about the source of the test.@Nullable StringReturns the name of the test suite, if any.Methods inherited from interface org.gradle.tooling.events.OperationDescriptor
getDisplayName, getName, getParentMethods inherited from interface org.gradle.tooling.events.test.TestOperationDescriptor
getTestDisplayName
-
Method Details
-
getJvmTestKind
JvmTestKind getJvmTestKind()Returns what kind of test this is.- Returns:
- The test kind.
-
getSuiteName
@Nullable String getSuiteName()Returns the name of the test suite, if any.- Returns:
- The name of the test suite.
-
getClassName
@Nullable String getClassName()Returns the name of the test class, if any.- Returns:
- The name of the test class.
-
getMethodName
@Nullable String getMethodName()Returns the name of the test method, if any.- Returns:
- The name of the test method.
-
getSource
Returns information about the source of the test.The known source types are modeled as TestSource subtypes.
If the test execution explicitly declares that no test source information is available then the method returns
NoSource. If Gradle fails to determine the test source information, the method returnsOtherSource.For older Gradle versions, the implementation will attempt to provide a valid result based on the state of the source object using
NoSourceas a default value.- Returns:
- the test source
- Since:
- 9.4.0
-