Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for hasTestsOf (2.71 sec)

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

        private val nameToSubproject = subprojects.map { it.name to it }.toMap()
    
        override fun getSubprojectsForFunctionalTest(testConfig: TestCoverage) = subprojects.filter { it.hasTestsOf(testConfig.testType) }
    
        override fun getSubprojectByName(name: String) = nameToSubproject[name]
    
        private fun toSubproject(subproject: Map<String, Any>): GradleSubproject {
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  2. .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