maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/booterclient/output/ThreadedStreamConsumer.java [172:199]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        @Override
        public boolean isConsoleCategory() {
            return false;
        }

        @Override
        public boolean isConsoleErrorCategory() {
            return false;
        }

        @Override
        public boolean isStandardStreamCategory() {
            return false;
        }

        @Override
        public boolean isSysPropCategory() {
            return false;
        }

        @Override
        public boolean isTestCategory() {
            return false;
        }

        @Override
        public boolean isJvmExitError() {
            return false;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



surefire-api/src/main/java/org/apache/maven/surefire/api/event/ControlByeEvent.java [38:65]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public boolean isConsoleCategory() {
        return false;
    }

    @Override
    public boolean isConsoleErrorCategory() {
        return false;
    }

    @Override
    public boolean isStandardStreamCategory() {
        return false;
    }

    @Override
    public boolean isSysPropCategory() {
        return false;
    }

    @Override
    public boolean isTestCategory() {
        return false;
    }

    @Override
    public boolean isJvmExitError() {
        return false;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



