Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setIgnoreFailures (0.28 sec)

  1. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/TestTest.groovy

            1 * testExecuterMock.execute(_ as TestExecutionSpec, _ as TestResultProcessor)
        }
    
        def "execute with test failures and ignore failures"() {
            given:
            configureTask()
            test.setIgnoreFailures(true)
    
            when:
            test.executeTests()
    
            then:
            1 * testExecuterMock.execute(_ as TestExecutionSpec, _ as TestResultProcessor)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/javadoc/Javadoc.java

            validateExecutableMatchesToolchain();
    
            JavadocSpec spec = new JavadocSpec();
            spec.setOptions(options);
            spec.setIgnoreFailures(!isFailOnError());
            spec.setWorkingDir(getProjectLayout().getProjectDirectory().getAsFile());
            spec.setOptionsFile(getOptionsFile());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/AbstractTestTask.java

         */
        @Internal
        @Override
        public boolean getIgnoreFailures() {
            return ignoreFailures;
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        public void setIgnoreFailures(boolean ignoreFailures) {
            this.ignoreFailures = ignoreFailures;
        }
    
        private TestExceptionFormatter getExceptionFormatter(TestLogging testLogging) {
            switch (testLogging.getExceptionFormat()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top