wcarlson5 commented on a change in pull request #10211: URL: https://github.com/apache/kafka/pull/10211#discussion_r587874211
########## File path: streams/src/test/java/org/apache/kafka/streams/processor/internals/TaskManagerTest.java ########## @@ -3112,6 +3122,26 @@ void setChangelogOffsets(final Map<TopicPartition, Long> changelogOffsets) { return changelogOffsets; } + @Override + public Map<TopicPartition, Long> committedOffsets() { + return Collections.emptyMap(); + } + + @Override + public Map<TopicPartition, Long> highWaterMark() { + return Collections.emptyMap(); + } + + @Override + public Optional<Long> timeCurrentIdlingStarted() { + return Optional.empty(); + } + + @Override + public void updateCommittedOffsets(final TopicPartition topicPartition, final Long offset) { Review comment: Since this is a testing implementation of Task I just added some checks to make sure the calls are valid, but I think that is sufficient. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org