Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for testPlanExecutionStarted (0.37 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/jupiter/JUnitJupiterTestReportIntegrationTest.groovy

                import org.junit.platform.launcher.*;
                public class ThrowingListener implements TestExecutionListener {
                    @Override
                    public void testPlanExecutionStarted(TestPlan testPlan) {
                        System.out.println("System.out from ThrowingListener");
                        System.err.println("System.err from ThrowingListener");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestClassProcessor.java

                    launcher.execute(discoveryRequest, executionListener);
                }
            }
        }
    
        private void executeDryRun(TestPlan testPlan, TestExecutionListener listener) {
            listener.testPlanExecutionStarted(testPlan);
    
            for (TestIdentifier root : testPlan.getRoots()) {
                dryRun(root, testPlan, listener);
            }
    
            listener.testPlanExecutionFinished(testPlan);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestExecutionListener.java

            this.resultProcessor = resultProcessor;
            this.clock = clock;
            this.idGenerator = idGenerator;
        }
    
        @Override
        public void testPlanExecutionStarted(TestPlan testPlan) {
            this.currentTestPlan = testPlan;
        }
    
        @Override
        public void testPlanExecutionFinished(TestPlan testPlan) {
            this.currentTestPlan = null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:25 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top