Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for TestCompleteEvent (0.59 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/FailFastTestListenerInternal.java

            delegate.started(testDescriptor, startEvent);
        }
    
        @Override
        public void completed(TestDescriptorInternal testDescriptor, TestResult testResult, TestCompleteEvent completeEvent) {
            delegate.completed(testDescriptor, testResult, completeEvent);
    
            if (!failed && testResult.getResultType() == TestResult.ResultType.FAILURE) {
                failed = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/operations/TestListenerBuildOperationAdapter.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing.operations;
    
    import org.gradle.api.internal.tasks.testing.TestCompleteEvent;
    import org.gradle.api.internal.tasks.testing.TestDescriptorInternal;
    import org.gradle.api.internal.tasks.testing.TestStartEvent;
    import org.gradle.api.internal.tasks.testing.results.TestListenerInternal;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/TestResultProcessor.java

        /**
         * Notifies this processor that a test has completed execution.
         */
        @UsedByScanPlugin("test-distribution")
        void completed(Object testId, TestCompleteEvent event);
    
        /**
         * Notifies this processor that a test has produced some output.
         */
        @UsedByScanPlugin("test-distribution")
        void output(Object testId, TestOutputEvent event);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/SuiteTestClassProcessor.java

                resultProcessor.failure(suiteDescriptor.getId(), TestFailure.fromTestFrameworkFailure(rawFailure));
            } finally {
                resultProcessor.completed(suiteDescriptor.getId(), new TestCompleteEvent(clock.getCurrentTime()));
            }
        }
    
        @Override
        public void stopNow() {
            throw new UnsupportedOperationException("stopNow() should not be invoked on remote worker TestClassProcessor");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top