Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for testType (0.19 sec)

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

        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 Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

                buckets.forEachIndexed { index: Int, startEndVersion: List<String> ->
                    assertTrue(functionalTests[index].name.contains("(${startEndVersion[0]} <= gradle <${startEndVersion[1]})"))
                    assertEquals("clean ${testType}Test", functionalTests[index].getGradleTasks())
                    assertTrue(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 10:00:06 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

            }
            setUpAgentIfNeeded(testType, executer)
            disableIfNeeded(testType, executer)
        }
    
    
    internal
    fun IntegrationTest.disableIfNeeded(testType: TestType, executer: String) {
        if (testType == TestType.INTEGRATION && executer == "isolatedProjects") {
            isEnabled = false
        }
    }
    
    
    private
    fun IntegrationTest.setUpAgentIfNeeded(testType: TestType, executer: String) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoAggregationIntegrationTest.groovy

            given:
            file("transitive/build.gradle") << """
                testing {
                    suites {
                        integTest(JvmTestSuite) {
                            testType = TestSuiteType.INTEGRATION_TEST
                            useJUnit()
                            dependencies {
                              implementation project()
                            }
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 26.3K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

                testing {
                    suites {
                        primaryIntTest(JvmTestSuite) {
                            testType = TestSuiteType.INTEGRATION_TEST
                        }
    
                        secondaryIntTest(JvmTestSuite) {
                            testType = TestSuiteType.INTEGRATION_TEST
                        }
                    }
                }
            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/JavaPropertyReflectionUtilTest.groovy

        def "#type has type variable: #hasTypeVariable"() {
            expect:
            JavaPropertyReflectionUtil.hasTypeVariable(type) == hasTypeVariable
    
            where:
            testType << testedTypes
            type = testType.first
            hasTypeVariable = testType.second
        }
    
        def "#method.genericReturnType resolves to #expectedResolvedReturnType"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/errors/errors_test.go

    	if e, a := metav1.StatusReasonUnknown, ReasonForError(nil); e != a {
    		t.Errorf("unexpected reason type: %#v", a)
    	}
    }
    
    type TestType struct{}
    
    func (obj *TestType) GetObjectKind() schema.ObjectKind { return schema.EmptyObjectKind }
    func (obj *TestType) DeepCopyObject() runtime.Object {
    	if obj == nil {
    		return nil
    	}
    	clone := *obj
    	return &clone
    }
    
    func TestFromObject(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  8. src/internal/reflectlite/all_test.go

    	}
    }
    
    func TestAll(t *testing.T) {
    	testType(t, 1, TypeOf((int8)(0)), "int8")
    	testType(t, 2, TypeOf((*int8)(nil)).Elem(), "int8")
    
    	typ := TypeOf((*struct {
    		c chan *int32
    		d float32
    	})(nil))
    	testType(t, 3, typ, "*struct { c chan *int32; d float32 }")
    	etyp := typ.Elem()
    	testType(t, 4, etyp, "struct { c chan *int32; d float32 }")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:26:08 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStoreTest.groovy

            when:
            def metadata = store.getTypeAnnotationMetadata(TypeWithAnnotations)
    
            then:
            metadata.annotations*.annotationType() == [TestType]
        }
    
        @TestType
        @Irrelevant
        interface TypeWithAnnotations {}
    
        def "warns about annotations on non-getter methods"() {
            expect:
            assertProperties TypeWithAnnotatedNonGetterMethods, [:], [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 11 15:31:37 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  10. src/internal/syscall/windows/registry/registry_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	defer timezoneK.Close()
    
    	type testType struct {
    		name string
    		want string
    	}
    	var tests = []testType{
    		{"MUI_Std", syscall.UTF16ToString(dtzi.StandardName[:])},
    	}
    	if dtzi.DynamicDaylightTimeDisabled == 0 {
    		tests = append(tests, testType{"MUI_Dlt", syscall.UTF16ToString(dtzi.DaylightName[:])})
    	}
    
    	for _, test := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:19:00 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top