Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 112 for testit (0.3 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    // limitations under the License.
    
    [[test_kit]]
    = Testing Build Logic with TestKit
    
    The Gradle TestKit (a.k.a. just TestKit) is a library that aids in testing Gradle plugins and build logic generally. At this time, it is focused on _functional_ testing. That is, testing build logic by exercising it as part of a programmatically executed build. Over time, the TestKit will likely expand to facilitate other kinds of tests.
    
    [[sec:testkit_usage]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. .teamcity/performance-tests-ci.json

          }
        } ]
      }, {
        "testId" : "org.gradle.performance.regression.android.RealLifeAndroidBuildPerformanceTest.calculate task graph with test finalizer",
        "groups" : [ {
          "testProject" : "largeAndroidBuild",
          "coverage" : {
            "per_commit" : [ "linux" ]
          }
        } ]
      }, {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:12 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  3. pkg/test/framework/test.go

    	RequiresLocalControlPlane() Test
    	// RequiresSingleNetwork ensures that clusters are in the same network
    	//
    	// Deprecated: Tests should not make assumptions regarding number of networks.
    	RequiresSingleNetwork() Test
    	// TopLevel marks a test as a "top-level test" meaning a container test that has many subtests.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionResultsStore.java

            return withConnection("load test history", connection -> {
                try (
                    Statement statement = connection.createStatement();
                    ResultSet testExecutions = statement.executeQuery(
                        "select testClass, testId, testProject" +
                            "   from testExecutionExperiment" +
                            "  order by testClass, testId, testProject"
                    )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestResultProcessorAdapter.java

    import org.gradle.api.internal.tasks.testing.TestStartEvent;
    import org.gradle.api.tasks.testing.TestFailure;
    import org.gradle.api.tasks.testing.TestResult;
    import org.gradle.internal.id.IdGenerator;
    import org.gradle.internal.time.Clock;
    import org.testng.IMethodInstance;
    import org.testng.ISuite;
    import org.testng.ISuiteListener;
    import org.testng.ITestClass;
    import org.testng.ITestContext;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  6. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/ToolingApiGradleExecutor.java

    import java.util.concurrent.atomic.AtomicBoolean;
    
    import static org.gradle.testkit.runner.TaskOutcome.FAILED;
    import static org.gradle.testkit.runner.TaskOutcome.FROM_CACHE;
    import static org.gradle.testkit.runner.TaskOutcome.NO_SOURCE;
    import static org.gradle.testkit.runner.TaskOutcome.SKIPPED;
    import static org.gradle.testkit.runner.TaskOutcome.SUCCESS;
    import static org.gradle.testkit.runner.TaskOutcome.UP_TO_DATE;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 14:27:21 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. tests/integration/telemetry/api/accesslogs_test.go

    		clientCount := logCount(t, from, testID)
    		serverCount := logCount(t, to, testID)
    
    		from.CallOrFail(t, echo.CallOptions{
    			To: to,
    			Port: echo.Port{
    				Name: "http",
    			},
    			HTTP: echo.HTTP{
    				Path: "/" + testID,
    			},
    		})
    
    		return retry.UntilSuccess(func() error {
    			clientDeltaCount := logCount(t, from, testID) - clientCount
    			if clientDeltaCount > 0 != exceptClientLog {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ExpectMaxNConcurrentRequests.java

        private final int testId;
        private final long timeoutMs;
        private final Clock clock = Time.clock();
        private int waitingFor;
        private final WaitPrecondition previous;
        private long mostRecentEvent;
        private boolean cancelled;
        private final ExpectationState state = new ExpectationState();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestOutputStore.java

            }
    
            public void onOutput(long classId, long testId, TestOutputEvent outputEvent) {
                boolean stdout = outputEvent.getDestination() == TestOutputEvent.Destination.StdOut;
                mark(classId, testId, stdout);
    
                output.writeBoolean(stdout);
                output.writeSmallLong(classId);
                output.writeSmallLong(testId);
    
                byte[] bytes;
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/TestTaskSpec.groovy

     */
    
    package org.gradle.api.tasks.testing
    
    import org.gradle.api.GradleException
    import org.gradle.api.internal.tasks.testing.TestCompleteEvent
    import org.gradle.api.internal.tasks.testing.TestDescriptorInternal
    import org.gradle.api.internal.tasks.testing.TestExecuter
    import org.gradle.api.internal.tasks.testing.TestExecutionSpec
    import org.gradle.api.internal.tasks.testing.TestResultProcessor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top