Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for createFunctionalTestsFor (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. .teamcity/src/main/kotlin/projects/FunctionalTestProject.kt

        val stage: Stage,
    ) : Project({
            this.id(testCoverage.asId(model))
            this.name = testCoverage.asName()
        }) {
        val functionalTests: List<BaseGradleBuildType> = functionalTestBucketProvider.createFunctionalTestsFor(stage, testCoverage)
    
        init {
            functionalTests.forEach(this::buildType)
        }
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Wed Feb 12 09:12:03 GMT 2025
    - 876 bytes
    - Click Count (0)
  2. .teamcity/src/main/kotlin/model/FunctionalTestBucketModel.kt

            // Can't exceed Linux file name limit 255 char on TeamCity
            if (str.length > 200) {
                str.substring(0, 200) + "..."
            } else {
                str
            }
    
        override fun createFunctionalTestsFor(
            model: CIBuildModel,
            stage: Stage,
            testCoverage: TestCoverage,
            bucketIndex: Int,
        ): FunctionalTest =
            FunctionalTest(
                model,
    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)
  3. .teamcity/src/main/kotlin/model/CIBuildModel.kt

    )
    
    fun TestCoverage.getBucketUuid(
        model: CIBuildModel,
        bucketIndex: Int,
    ) = asConfigurationId(model, "bucket${bucketIndex + 1}")
    
    interface BuildTypeBucket {
        fun createFunctionalTestsFor(
            model: CIBuildModel,
            stage: Stage,
            testCoverage: TestCoverage,
            bucketIndex: Int,
        ): FunctionalTest
    
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Wed Nov 05 13:00:26 GMT 2025
    - 27.5K bytes
    - Click Count (0)
Back to Top