- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for TestType (1.55 sec)
-
.teamcity/src/main/kotlin/model/CIBuildModel.kt
val functionalTests: Boolean = true, val crossVersionTests: Boolean = false, ) { fun hasTestsOf(testType: TestType) = (unitTests && testType.unitTests) || (functionalTests && testType.functionalTests) || (crossVersionTests && testType.crossVersionTests) } data class Stage( val stageName: StageName, val specificBuilds: List<SpecificBuild> = emptyList(),
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Sun Aug 03 22:40:28 UTC 2025 - 25.9K bytes - Viewed (0) -
.teamcity/src/main/kotlin/projects/StageProject.kt
} }, ), ) } } private val TestCoverage.isCrossVersionTest get() = testType in setOf(TestType.ALL_VERSIONS_CROSS_VERSION, TestType.QUICK_FEEDBACK_CROSS_VERSION) private fun createPerformanceTests( model: CIBuildModel, performanceTestBucketProvider: PerformanceTestBucketProvider, stage: Stage,
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Tue Jul 29 03:24:58 UTC 2025 - 11.9K bytes - Viewed (0)