Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for fireTestFinished (0.2 sec)

  1. platforms/documentation/docs/src/docsTest/java/org/gradle/docs/samples/RunNotifierWrapper.java

        }
    
        @Override
        public void fireTestIgnored(Description description) {
            notifier.fireTestIgnored(description);
        }
    
        @Override
        public void fireTestFinished(Description description) {
            notifier.fireTestFinished(description);
        }
    
        @Override
        public void pleaseStop() {
            notifier.pleaseStop();
        }
    
        @Override
        public void addListener(RunListener listener) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm-infrastructure/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorData.groovy

            runNotifier.fireTestStarted(test1)
            runNotifier.fireTestStarted(test2)
            runNotifier.fireTestFailure(new Failure(test1, failure.rawFailure))
            runNotifier.fireTestFinished(test2)
            runNotifier.fireTestFinished(test1)
        }
    }
    
    @RunWith(CustomRunnerWithBrokenConstructor.class)
    public class ATestClassWithUnconstructibleRunner {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4ClassLevelFilteringIntegrationTest.groovy

                    public void run(RunNotifier notifier) {
                        for(Description d: getDescription().getChildren()) {
                            notifier.fireTestStarted(d);
                            notifier.fireTestFinished(d);
                        }
                    }
                }
            """.stripIndent()
    
            when:
            run("test", "--tests", "FooTest.pass")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4IgnoreClassIntegrationTest.groovy

                                notifier.fireTestStarted(description);
                                try {
                                    if (testContainingInstance.doSomething()) {
                                        notifier.fireTestFinished(description);
                                    } else {
                                        notifier.fireTestIgnored(description);
                                    }
                                } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4TestClassDetectionIntegrationTest.groovy

                    public void run(RunNotifier notifier) {
                        for (Description child : description.getChildren()) {
                            notifier.fireTestStarted(child);
                            notifier.fireTestFinished(child);
                        }
                    }
                }
            """.stripIndent()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    throws StoppedByUserExcepti; public void fireTestFailure(Failure); private void fireTestFailures(java.util.List, java.util.List); public void fireTestAssumptionFa(Failure); public void fireTestIgnored(org.junit.runner.Description); public void fireTestFinished(org.junit.runner.Description); public void pleaseStop(); public void addFirstListener(RunListener); } org/junit/runner/notification/RunNotifier$4.class package org.junit.runner.notification; synchronized class RunNotifier$4 extends RunNotifier$SafeNotifier...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
Back to top