Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getExceptionFormat (0.26 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/DefaultTestLoggingContainer.java

        @Override
        public void setShowStackTraces(boolean flag) {
            getDefaultTestLogging().setShowStackTraces(flag);
        }
    
        @Override
        public TestExceptionFormat getExceptionFormat() {
            return getDefaultTestLogging().getExceptionFormat();
        }
    
        @Override
        public void setExceptionFormat(TestExceptionFormat exceptionFormat) {
            setExceptionFormat((Object) exceptionFormat);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/DefaultTestLogging.java

            return showStackTraces;
        }
    
        @Override
        public void setShowStackTraces(boolean flag) {
            showStackTraces = flag;
        }
    
        @Override
        public TestExceptionFormat getExceptionFormat() {
            return exceptionFormat;
        }
    
        @Override
        public void setExceptionFormat(TestExceptionFormat exceptionFormat) {
            setExceptionFormat((Object) exceptionFormat);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 10:04:16 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestLogging.java

         * the INFO and DEBUG log levels and {@link TestExceptionFormat#SHORT} for the LIFECYCLE log level.
         *
         * @return the format to be used for logging test exceptions
         */
        TestExceptionFormat getExceptionFormat();
    
        /**
         * Sets the format to be used for logging test exceptions. Only relevant if {@code showStackTraces} is {@code true}.  Defaults to {@link TestExceptionFormat#FULL} for
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/AbstractTestTask.java

            this.ignoreFailures = ignoreFailures;
        }
    
        private TestExceptionFormatter getExceptionFormatter(TestLogging testLogging) {
            switch (testLogging.getExceptionFormat()) {
                case SHORT:
                    return new ShortExceptionFormatter(testLogging);
                case FULL:
                    return new FullExceptionFormatter(testLogging);
                default:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.tasks.testing.logging.TestLogging.getEvents()> does not have raw return type assignable to org.gradle.api.provider.Property in (TestLogging.java:0)
    Method <org.gradle.api.tasks.testing.logging.TestLogging.getExceptionFormat()> does not have raw return type assignable to org.gradle.api.provider.Property in (TestLogging.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top