open class DotnetVsTestStep : BuildStep
A .NET vstest step to run .NET VSTest
See Also
sealed class Coverage : CompoundParam |
|
sealed class Filter : CompoundParam |
|
enum class ImagePlatform
Docker image platforms |
|
enum class Platform
Platform bitness |
|
enum class VSTestVersion
MSBuild version |
|
enum class Verbosity
Logging verbosity |
DotnetVsTestStep(init: DotnetVsTestStep.() -> Unit = {}, base: DotnetVsTestStep? = null) |
var args: String?
Enter additional command line parameters for dotnet vstest. |
|
var assemblies: String?
Specify paths to test assemblies. Wildcards are supported. |
|
var coverage: Coverage?
Specifies coverage tool to use |
|
var dockerImage: String?
Specifies which Docker image to use for running this build step. I.e. the build step will be run inside specified docker image, using 'docker run' wrapper. |
|
var dockerImagePlatform: ImagePlatform?
Specifies which Docker image platform will be used to run this build step. |
|
var dockerPull: Boolean?
If enabled, "docker pull image" will be run before docker run. |
|
var dockerRunParameters: String?
Additional docker run command arguments |
|
var filter: Filter?
The filter type used while test run |
|
var framework: String?
The target .NET Framework version to be used for test execution. |
|
var logging: Verbosity?
Specify logging verbosity |
|
var platform: Platform?
Target platform architecture to be used for test execution |
|
var runInIsolation: Boolean?
Whether TeamCity should run tests in an isolated process |
|
var settingsFile: String?
The path to the run settings configuration file. |
|
var version: VSTestVersion?
VSTest version to use |
|
var workingDir: String?
Build working directory for script, specify it if it is different from the checkout * directory. |
var conditions: BuildStepConditions
Optional collection of build step execution conditions |
|
var enabled: Boolean
Specifies whether the step is enabled |
|
var executionMode: ExecutionMode
Build step execution mode |
|
var id: String?
Id of the step, if not specified will be generated |
|
var name: String
Build step name |
|
var type: String
Build step type |
fun dotcover(init: Dotcover.() -> Unit = {}): Dotcover |
|
fun testCaseFilter(init: TestCaseFilter.() -> Unit = {}): TestCaseFilter |
|
fun testName(init: TestName.() -> Unit = {}): TestName |
fun conditions(base: BuildStepConditions? = null, init: BuildStepConditions.() -> Unit = {}): Unit
Configures build step conditions |