Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 50 for Sall (0.06 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      virtual ~Test();
    
      // Sets up the stuff shared by all tests in this test case.
      //
      // Google Test will call Foo::SetUpTestCase() before running the first
      // test in test case Foo.  Hence a sub-class can define its own
      // SetUpTestCase() method to shadow the one defined in the super
      // class.
      static void SetUpTestCase() {}
    
      // Tears down the stuff shared by all tests in this 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)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

                implementation("com:foo")
            }
        }
    }
    
    configurations.testImplementation {
        // Calling `all` here realizes/observes all lazy sources, including the `DependencyCollector`
        // from the test suite block. Operations like resolving a configuration similarly realize lazy sources.
        dependencies.all {
            if (this is ExternalDependency && group == "com" && name == "foo" && version == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

                if (System.getenv().containsKey("CI")) {
                    throw new IllegalArgumentException("Builds cannot be started with the debugger enabled on CI. This will cause tests to hang forever. Remove the call to startLauncherInDebugger().");
                }
                gradleInvocation.implicitLauncherJvmArgs.add(debugLauncher.toDebugArgument());
            }
            gradleInvocation.implicitLauncherJvmArgs.add("-ea");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

            failure.assertHasCause("Could not resolve all dependencies for configuration ':a:compile'.")
            failure.assertHasCause("Could not resolve project :b.")
            failure.assertHasCause("""Cannot choose between the available variants of project :b:
      - bar
      - foo
    All of them match the consumer attributes:
      - Variant 'bar' capability test:b:unspecified:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

                this.calls.addAll(Arrays.asList(calls));
            }
    
            @Override
            public String with(Syntax syntax) {
                return "{" + calls.stream()
                    .map(call -> call.invocationExpression.with(syntax))
                    .collect(Collectors.joining("\n", " ", " ")) +
                    "}";
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // case with any set of parameters you want. Google Test defines a number
    // of functions for generating test parameters. They return what we call
    // (surprise!) parameter generators. Here is a  summary of them, which
    // are all in the testing namespace:
    //
    //
    //  Range(begin, end [, step]) - Yields values {begin, begin+step,
    //                               begin+step+step, ...}. The values do not
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // case with any set of parameters you want. Google Test defines a number
    // of functions for generating test parameters. They return what we call
    // (surprise!) parameter generators. Here is a  summary of them, which
    // are all in the testing namespace:
    //
    //
    //  Range(begin, end [, step]) - Yields values {begin, begin+step,
    //                               begin+step+step, ...}. The values do not
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                    // versions and not the resolved ones, this can't be resolved
                    shouldFail {
                        assertHasCause 'Could not resolve all files for configuration'
                        assertHasCause 'Could not find commons-collections:commons-collections:.'
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

        if (::testing::internal::IsTrue(condition)) \
          ; \
        else \
          GTEST_LOG_(FATAL) << "Condition " #condition " failed. "
    
    // An all-mode assert to verify that the given POSIX-style function
    // call returns 0 (indicating success).  Known limitation: this
    // doesn't expand to a balanced 'if' statement, so enclose the macro
    // in {} if you need to use it as the only statement in an 'if'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    # method name containing spaces
    gradle test --tests "org.gradle.SomeTestClass.some method containing spaces"
    
    # all classes at specific package (recursively)
    gradle test --tests 'all.in.specific.package*'
    
    # specific method at specific package (recursively)
    gradle test --tests 'all.in.specific.package*.someSpecificMethod'
    
    gradle test --tests '*IntegTest'
    
    gradle test --tests '*IntegTest*ui*'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
Back to top