Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for TestCompleteEvent (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.api.internal.tasks.testing.TestCompleteEvent> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (TestCompleteEvent.java:0)
    Class <org.gradle.api.internal.tasks.testing.TestExecutableUtils> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (TestExecutableUtils.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top