- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for FunctionalTestBucket (0.08 seconds)
-
.teamcity/src/main/kotlin/model/FunctionalTestBucketModel.kt
class TestClassTime( val sourceSet: String, val buildTimeMs: Int, ) data class TestCoverageAndBucketSplits( val testCoverageUuid: Int, val buckets: List<FunctionalTestBucket>, ) data class FunctionalTestBucket( val subprojects: SortedSet<String>, val parallelizationMethod: ParallelizationMethod, ) { constructor(subprojectList: List<String>, parallelizationMethod: ParallelizationMethod) : this(
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Apr 10 15:09:32 GMT 2025 - 3.4K bytes - Click Count (0) -
.teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt
val buckets: List<SmallSubprojectBucket> = (testCoverageAndBucket["buckets"] as List<Map<String, Any>>).map { FunctionalTestBucket(it).toBuildTypeBucket(model.subprojects) } // Sometimes people may add new subproject into `subprojects.json`
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Sep 24 08:38:33 GMT 2025 - 8.2K bytes - Click Count (0)