nebula.test.functional.internal.toolingapi.ToolingExecutionResult.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nebula-test Show documentation
Show all versions of nebula-test Show documentation
Test harness for Gradle plugins
package nebula.test.functional.internal.toolingapi
import groovy.transform.CompileStatic
import nebula.test.functional.internal.DefaultExecutionResult
/**
* Hold additional response data, that is only available
*/
@CompileStatic
class ToolingExecutionResult extends DefaultExecutionResult {
ToolingExecutionResult(Boolean success, String standardOutput, String standardError, List executedTasks, Throwable failure) {
super(success, standardOutput, standardError, executedTasks, failure)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy