Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for googleTest (0.14 sec)

  1. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/GoogleTestIntegrationTest.groovy

        def setup() {
            prebuiltDir.file("/googleTest/1.7.0/lib/${toolChain.unitTestPlatform}/${googleTestLib}").assumeExists()
            buildFile << """
    apply plugin: 'google-test-test-suite'
    
    model {
        repositories {
            libs(PrebuiltLibraries) {
                googleTest {
                    headers.srcDir "${prebuiltPath}/googleTest/1.7.0/include"
                    binaries.withType(StaticLibraryBinary) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/internal/saved_model_api_test.cc

                                      kTestData, saved_model_dir);
    }
    
    // This value parameterized test allows us to test both TFRT
    // and non TFRT runtimes.
    // https://github.com/google/googletest/blob/dcc92d0ab6c4ce022162a23566d44f673251eee4/googletest/docs/advanced.md#value-parameterized-tests
    class CSavedModelAPITest : public ::testing::TestWithParam<bool> {};
    
    TEST_P(CSavedModelAPITest, LoadsSavedModelWithTags) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 08:08:45 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/NativeProjectWithDepsGeneratorTask.groovy

        void generateRootProject() {
            generateSettings()
            generateGradleProperties()
        }
    
        // TODO: This could be made more generic by passing a list of subproject names
        // that includes 'googleTest'.
        void generateSettings() {
            project.copy {
                from(new File(projectTemplate, "settings.gradle"))
                into(destDir)
                expand([
                    rootProjectName: name,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 11.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/cpp_unit_test_plugin.adoc

    The {cpp} Unit Test Plugin provides the tasks, configurations and conventions for integrating with a {cpp} executable-based testing framework, such as https://github.com/google/googletest[Google Test].
    
    [[sec:cpp_unit_test_usage]]
    == Usage
    
    .Applying the {cpp} Unit Test Plugin
    ====
    include::sample[dir="snippets/cpp/cppUnitTest/kotlin",files="build.gradle.kts[tags=apply-plugin]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/dsl/dsl.xml

                </tr>
                <tr>
                    <td>org.gradle.nativeplatform.test.cunit.CUnitTestSuiteSpec</td>
                </tr>
                <tr>
                    <td>org.gradle.nativeplatform.test.googletest.GoogleTestTestSuiteSpec</td>
                </tr>
                <tr>
                    <td>org.gradle.nativeplatform.NativeBinarySpec</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 34.7K bytes
    - Viewed (0)
Back to top