Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for AbstractTestLogger (0.61 sec)

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

     * Provides ability to log test events. Not thread safe.
     */
    public abstract class AbstractTestLogger {
        private final StyledTextOutputFactory textOutputFactory;
        private final LogLevel logLevel;
        private final int displayGranularity;
        private TestDescriptor lastSeenTestDescriptor;
        private TestLogEvent lastSeenTestEvent;
    
        protected AbstractTestLogger(StyledTextOutputFactory textOutputFactory, LogLevel logLevel, int displayGranularity) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/AbstractTestLoggerTest.groovy

    class AbstractTestLoggerTest extends Specification {
        static String sep = TextUtil.platformLineSeparator
    
        StyledTextOutputFactory textOutputFactory = new TestStyledTextOutputFactory()
        AbstractTestLogger logger
    
        def rootDescriptor = new SimpleTestDescriptor(displayName: "Test Run", className: null, composite: true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/TestEventLogger.java

    import org.gradle.internal.logging.text.StyledTextOutputFactory;
    import org.gradle.util.internal.TextUtil;
    
    /**
     * Console logger for test events.
     */
    public class TestEventLogger extends AbstractTestLogger implements TestListener, TestOutputListener {
        private static final String INDENT = "    ";
    
        private final TestExceptionFormatter exceptionFormatter;
        private final TestLogging testLogging;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.api.internal.tasks.testing.logging.AbstractTestLogger> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (AbstractTestLogger.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top