Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 115 for init_test (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/JavaBasePluginIntegrationTest.groovy

                    sourceSets {
                        unitTest {
                        }
                    }
                    dependencies {
                        unitTestImplementation project(':main')
                    }
                }
            """
            file("main/src/main/java/Main.java") << """public class Main { }"""
            file("tests/src/unitTest/java/Test.java") << """public class Test { Main main = null; }"""
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/cpp/cppUnitTest/kotlin/build.gradle.kts

    // tag::apply-plugin[]
    plugins {
        `cpp-unit-test`
    }
    // end::apply-plugin[]
    
    // tag::configure-target-machines[]
    unitTest {
        targetMachines = listOf(machines.linux.x86_64,
            machines.windows.x86, machines.windows.x86_64,
            machines.macOS.x86_64)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 301 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/cpp/cppUnitTest/groovy/build.gradle

    // tag::apply-plugin[]
    plugins {
        id 'cpp-unit-test'
    }
    // end::apply-plugin[]
    
    // tag::configure-target-machines[]
    unitTest {
        targetMachines = [
            machines.linux.x86_64,
            machines.windows.x86, machines.windows.x86_64,
            machines.macOS.x86_64
        ]
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 312 bytes
    - Viewed (0)
  7. maven-core/src/test/resources/projects/fully-populated-child.xml

      <build>
        <nagEmailAddress>******@****.***</nagEmailAddress>
        <sourceDirectory>/sourceDirectory</sourceDirectory>
        <unitTestSourceDirectory>/unitTestSourceDirectory</unitTestSourceDirectory>
        <unitTest>
          <includes>
            <include>**/*Test.java</include>
          </includes>
          <excludes>
            <exclude>**/RepositoryTest.java</exclude>
            <exclude>**/JAXPTest.java</exclude>
          </excludes>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 22:49:30 UTC 2007
    - 4.7K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

                }
    
                reporting {
                    reports {
                        testAggregateTestReport(AggregateTestReport) {
                            testType = TestSuiteType.UNIT_TEST
                        }
                    }
                }
            '''
    
            when:
            succeeds(':testAggregateTestReport')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/binary/BaseBinarySpecTest.groovy

            def binary = create(SampleBinary, MySampleBinary, "unitTest", component)
    
            expect:
            binary.name == "unitTest"
            binary.projectScopedName == "sampleUnitTest"
            binary.displayName == "SampleBinary 'sample:unitTest'"
            binary.namingScheme.description == "sample binary 'sample:unitTest'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/testFixtures/groovy/org/gradle/ide/xcode/fixtures/ProjectFile.groovy

                this.buildConfigurationList.buildConfigurations.each { ProjectFile.PBXTarget.assertNotUnitTestBuildSettings(it.buildSettings) }
            }
    
            void assertIsUnitTest() {
                assertIs(ProductType.UNIT_TEST)
                this.buildConfigurationList.buildConfigurations.each {
                    if (it.name.startsWith("__GradleTestRunner_")) {
                        ProjectFile.PBXTarget.assertUnitTestBuildSettings(it.buildSettings)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top