Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 79 for testType (0.13 sec)

  1. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-code-coverage-standalone/README.adoc

    oject_dependencies,project dependencies>> of the `jacocoAggregation` configuration are selected for potential aggregation.
    
    The user must also declare one or more reports of type `JacocoCoverageReport`.  Each report instance specifies a `testType` property, used to match the test suite producing the coverage data.  A `JacocoReport` task is synthesized for each user-defined report and performs the aggregation.  Invoking this task will cause tests to be executed in the dependent projects of...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-standalone/README.adoc

    ct_dependencies,project dependencies>> of the `testReportAggregation` configuration are selected for potential aggregation.
    
    The user must also declare one or more reports of type `AggregateTestReport`.  Each report instance specifies a `testType` property, used to match the test suite producing the test data.  A `TestReport` task is synthesized for each user-defined report and performs the aggregation.  Invoking this task will cause tests to be executed in the dependent projects of the ...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-distribution/README.adoc

    Running the tests and generate the report:
    
    [listing.terminal.sample-command]
    ----
    $ ./gradlew testAggregateTestReport
    
    BUILD SUCCESSFUL
    24 actionable tasks: 24 executed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoKotlinJvmPluginAggregationTest.groovy

                    }
    
                    reporting {
                        reports {
                            testCodeCoverageReport(JacocoCoverageReport) {
                                testType = TestSuiteType.UNIT_TEST
                            }
                        }
                    }
    
                    subprojects {
                        repositories {
                            ${mavenCentralRepository()}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoPluginIntegrationTest.groovy

            settingsFile << "rootProject.name = 'Test'"
    
            buildFile << """
                testing {
                    suites {
                        integrationTest(JvmTestSuite) {
                            testType = TestSuiteType.INTEGRATION_TEST
    
                            dependencies {
                                implementation project()
                            }
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. 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)
  7. platforms/documentation/docs/src/docs/userguide/jvm/test_report_aggregation_plugin.adoc

    ====
    <.> Creates a report named `testAggregateTestReport` of type `AggregateTestReport`.  For convenience, sets `TestType` using a constant value from the  link:{javadocPath}/org/gradle/api/attributes/TestSuiteType.html[TestSuiteType] class.  Any String value is acceptable.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/jacoco_report_aggregation_plugin.adoc

    ====
    <.> Creates a report named `testCodeCoverageReport` of type `JacocoCoverageReport`.  For convenience, sets `TestType` using a constant value from the  link:{javadocPath}/org/gradle/api/attributes/TestSuiteType.html[TestSuiteType] class.  Any String value is acceptable.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/DefaultBinaryNamingSchemeTest.groovy

            "test"     | null   | []             | null       | null      | "test"
            "test"     | "type" | []             | null       | null      | "testType"
            "test"     | "type" | []             | null       | "classes" | "testTypeClasses"
            "test"     | null   | []             | null       | "classes" | "testClasses"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/asm_test.go

    		for i := rstart; i <= rend; i++ {
    			if i&msk != rout {
    				t.Errorf("%v is not aligned to 0x%X (expected %d, got %d)\n", rconv(i), msk, rout, rstart&msk)
    			}
    			rout++
    		}
    	}
    	var testType = []struct {
    		rstart int
    		rend   int
    		msk    int
    		rout   int
    	}{
    		{REG_VS0, REG_VS63, 63, 0},
    		{REG_R0, REG_R31, 31, 0},
    		{REG_F0, REG_F31, 31, 0},
    		{REG_V0, REG_V31, 31, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top