Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 189 for unit_test (0.19 sec)

  1. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-standalone/groovy/test-results/build.gradle

    dependencies {
        testReportAggregation project(':application') // <.>
    }
    
    // tag::create_report[]
    reporting {
        reports {
            testAggregateTestReport(AggregateTestReport) { // <.>
                testType = TestSuiteType.UNIT_TEST
            }
        }
    }
    // end::create_report[]
    
    tasks.named('check') {
        dependsOn tasks.named('testAggregateTestReport', TestReport) // <.>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 434 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-standalone/kotlin/test-results/build.gradle.kts

    }
    
    // tag::create_report[]
    reporting {
        reports {
            val testAggregateTestReport by creating(AggregateTestReport::class) { // <.>
                testType = TestSuiteType.UNIT_TEST
            }
        }
    }
    // end::create_report[]
    
    tasks.check {
        dependsOn(tasks.named<TestReport>("testAggregateTestReport")) // <.>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 446 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-code-coverage-standalone/groovy/code-coverage-report/build.gradle

    dependencies {
        jacocoAggregation project(':application') // <.>
    }
    
    // tag::create_report[]
    reporting {
        reports {
            testCodeCoverageReport(JacocoCoverageReport) { // <.>
                testType = TestSuiteType.UNIT_TEST
            }
        }
    }
    // end::create_report[]
    
    tasks.named('check') {
        dependsOn tasks.named('testCodeCoverageReport', JacocoReport) // <.>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 470 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-code-coverage-standalone/kotlin/code-coverage-report/build.gradle.kts

    }
    
    // tag::create_report[]
    reporting {
        reports {
            val testCodeCoverageReport by creating(JacocoCoverageReport::class) { // <.>
                testType = TestSuiteType.UNIT_TEST
            }
        }
    }
    // end::create_report[]
    
    tasks.check {
        dependsOn(tasks.named<JacocoReport>("testCodeCoverageReport")) // <.>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 482 bytes
    - Viewed (0)
  5. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoConfigurationCacheIntegrationTest.groovy

                reporting {
                    reports {
                        val testCodeCoverageReport by creating(JacocoCoverageReport::class) {
                            testType = TestSuiteType.UNIT_TEST
                        }
                    }
                }
    
                dependencies {
                    jacocoAggregation(project(":plugin"))
                }
            '''
            createDir('plugin') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 16:53:54 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

     public:
      virtual void OnTestProgramStart(const UnitTest& /*unit_test*/) {}
      virtual void OnTestIterationStart(const UnitTest& /*unit_test*/,
                                        int /*iteration*/) {}
      virtual void OnEnvironmentsSetUpStart(const UnitTest& /*unit_test*/) {}
      virtual void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) {}
      virtual void OnTestCaseStart(const TestCase& /*test_case*/) {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  7. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoAggregationIntegrationTest.groovy

                }
    
                reporting {
                    reports {
                        testCodeCoverageReport(JacocoCoverageReport) {
                            testType = TestSuiteType.UNIT_TEST
                        }
                    }
                }
            """
    
            when:
            succeeds(":testCodeCoverageReport")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 26.3K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/attributes/TestSuiteType.java

        Attribute<TestSuiteType> TEST_SUITE_TYPE_ATTRIBUTE = Attribute.of("org.gradle.testsuite.type", TestSuiteType.class);
    
        /**
         * Unit tests, the default type of test suite
         */
        String UNIT_TEST = "unit-test";
    
        String INTEGRATION_TEST = "integration-test";
    
        /**
         * Functional tests, will be added automatically when initializing a new plugin project
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 30 17:15:17 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

     public:
      virtual void OnTestProgramStart(const UnitTest& /*unit_test*/) {}
      virtual void OnTestIterationStart(const UnitTest& /*unit_test*/,
                                        int /*iteration*/) {}
      virtual void OnEnvironmentsSetUpStart(const UnitTest& /*unit_test*/) {}
      virtual void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) {}
      virtual void OnTestCaseStart(const TestCase& /*test_case*/) {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXTarget.java

            FRAMEWORK("com.apple.product-type.framework"),
            STATIC_FRAMEWORK("com.apple.product-type.framework.static"),
            APPLICATION("com.apple.product-type.application"),
            UNIT_TEST("com.apple.product-type.bundle.unit-test"),
            IN_APP_PURCHASE_CONTENT("com.apple.product-type.in-app-purchase-content"),
            APP_EXTENSION("com.apple.product-type.app-extension"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top