Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for assumptionFailed (0.22 sec)

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

                package org.gradle;
    
                ${testFrameworkImports}
    
                public class TestWithAssumptions {
                    @Test
                    public void assumptionFailed() {
                        assumeTrue(false);
                    }
    
                    @Test
                    public void assumptionSucceeded() {
                        assumeTrue(true);
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestEventAdapter.java

        private final Object lock = new Object();
        private final Map<Description, TestDescriptorInternal> executing = new HashMap<Description, TestDescriptorInternal>();
        private final Set<Description> assumptionFailed = new HashSet<Description>();
    
        public JUnitTestEventAdapter(TestResultProcessor resultProcessor, Clock clock, IdGenerator<?> idGenerator) {
            this.resultProcessor = resultProcessor;
            this.clock = clock;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 8.6K bytes
    - Viewed (0)
Back to top