Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for GoogleTestTestSuiteBinarySpec (0.48 sec)

  1. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/googletest/GoogleTestTestSuiteBinarySpec.java

    import org.gradle.api.Incubating;
    import org.gradle.nativeplatform.test.NativeTestSuiteBinarySpec;
    
    /**
     * An executable which run a Google Test test suite.
     */
    @Incubating
    public interface GoogleTestTestSuiteBinarySpec extends NativeTestSuiteBinarySpec {
        /**
         * {@inheritDoc}
         */
        @Override
        GoogleTestTestSuiteSpec getComponent();
    
        /**
         * {@inheritDoc}
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.nativeplatform.test.googletest.GoogleTestTestSuiteBinarySpec.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/googletest/internal/DefaultGoogleTestTestSuiteBinary.java

    import org.gradle.nativeplatform.test.googletest.GoogleTestTestSuiteBinarySpec;
    import org.gradle.nativeplatform.test.googletest.GoogleTestTestSuiteSpec;
    import org.gradle.nativeplatform.test.internal.DefaultNativeTestSuiteBinarySpec;
    
    public class DefaultGoogleTestTestSuiteBinary extends DefaultNativeTestSuiteBinarySpec implements GoogleTestTestSuiteBinarySpec {
        @Override
        public GoogleTestTestSuiteSpec getComponent() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/googletest/plugins/GoogleTestPlugin.java

            }
    
            @ComponentType
            public void registerGoogleTestSuiteBinaryType(TypeBuilder<GoogleTestTestSuiteBinarySpec> builder) {
                builder.defaultImplementation(DefaultGoogleTestTestSuiteBinary.class);
            }
    
            @ComponentBinaries
            public void createGoogleTestTestBinaries(ModelMap<GoogleTestTestSuiteBinarySpec> binaries,
                                                     GoogleTestTestSuiteSpec testSuite,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents/build.gradle

        }
        out.println """    
                }
            }"""
    }
    %>
        }
    
        binaries {
            withType(GoogleTestTestSuiteBinarySpec) {
                lib project: ":googleTest", library: "googleTest", linkage: "static"
                if (targetPlatform.operatingSystem.linux) {
                    cppCompiler.args '-pthread'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/build.gradle

        testSuites {
            operatorsTest(GoogleTestTestSuiteSpec) {
                testing $.components.operators
            }
        }
    }
    // tag::configure-test-binary[]
    model {
        binaries {
            withType(GoogleTestTestSuiteBinarySpec) {
                lib library: "googleTest", linkage: "static"
    
                if (flavor == flavors.failing) {
                    cppCompiler.define "PLUS_BROKEN"
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/GoogleTestIntegrationTest.groovy

        args "--gtest_output=xml:test_detail.xml"
    }
    """
            addGoogleTestDep()
        }
    
        private void addGoogleTestDep() {
            buildFile << """
    model {
        binaries {
            withType(GoogleTestTestSuiteBinarySpec) {
                lib library: "googleTest", linkage: "static"
                if (targetPlatform.operatingSystem.linux) {
                    cppCompiler.args '-pthread'
                    linker.args '-pthread'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/GoogleTestDependentComponentsIntegrationSpec.groovy

            """.stripIndent()
            addGoogleTestDep()
        }
    
        private void addGoogleTestDep() {
            buildFile << """
                model {
                    binaries {
                        withType(GoogleTestTestSuiteBinarySpec) {
                            lib library: "googleTest", linkage: "static"
                            if (targetPlatform.operatingSystem.linux) {
                                cppCompiler.args '-pthread'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    [[sec:running_googletest_tests]]
    === Running GoogleTest tests
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  10. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.nativeplatform.test.googletest.GoogleTestTestSuiteBinarySpec.getTestSuite()> does not have raw return type assignable to org.gradle.api.provider.Provider in (GoogleTestTestSuiteBinarySpec.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top