Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for hasTestsOf (0.04 sec)

  1. .teamcity/src/main/kotlin/model/CIBuildModel.kt

    data class GradleSubproject(
        val name: String,
        val path: String,
        val unitTests: Boolean = true,
        val functionalTests: Boolean = true,
        val crossVersionTests: Boolean = false,
    ) {
        fun hasTestsOf(testType: TestType) =
            (unitTests && testType.unitTests) ||
                (functionalTests && testType.functionalTests) ||
                (crossVersionTests && testType.crossVersionTests)
    }
    
    data class Stage(
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Sun Aug 03 22:40:28 UTC 2025
    - 25.9K bytes
    - Viewed (0)
Back to top