agavra commented on code in PR #14648: URL: https://github.com/apache/kafka/pull/14648#discussion_r1499784399
########## streams/streams-scala/src/test/scala/org/apache/kafka/streams/scala/kstream/StreamJoinedTest.scala: ########## @@ -16,22 +16,36 @@ */ package org.apache.kafka.streams.scala.kstream -import org.apache.kafka.streams.kstream.internals.StreamJoinedInternal +import org.apache.kafka.streams.kstream.internals.{InternalStreamsBuilder, StreamJoinedInternal} +import org.apache.kafka.streams.processor.internals.InternalTopologyBuilder import org.apache.kafka.streams.scala.serialization.Serdes import org.apache.kafka.streams.scala.serialization.Serdes._ import org.apache.kafka.streams.state.Stores +import org.easymock.EasyMock +import org.easymock.EasyMock.{createMock, replay} import org.junit.jupiter.api.Assertions.assertEquals -import org.junit.jupiter.api.Test +import org.junit.jupiter.api.{BeforeEach, Test} import java.time.Duration class StreamJoinedTest { + val builder: InternalStreamsBuilder = createMock(classOf[InternalStreamsBuilder]) + val topoBuilder: InternalTopologyBuilder = createMock(classOf[InternalTopologyBuilder]) + + @BeforeEach + def before(): Unit = { + EasyMock.expect(builder.internalTopologyBuilder()).andReturn(topoBuilder); Review Comment: Great news! I just matched what was already in this file, but for future reference it's alright to mix EasyMock/Mockito in the same test files? -- 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. To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org