Skip to content

Instantly share code, notes, and snippets.

@billydh
Created November 24, 2020 03:02
Show Gist options
  • Save billydh/e441ede494d8837f4a8c323f6f8cf58d to your computer and use it in GitHub Desktop.
Save billydh/e441ede494d8837f4a8c323f6f8cf58d to your computer and use it in GitHub Desktop.
initial class structure
package io.codebrews.kotlinkafkadynamodemo.kafka
import org.junit.jupiter.api.Assertions.*
import org.springframework.boot.test.context.SpringBootTest
import org.springframework.kafka.test.context.EmbeddedKafka
import org.springframework.test.annotation.DirtiesContext
@DirtiesContext
@EmbeddedKafka(partitions = 1)
@SpringBootTest
internal class KafkaListenerTest {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment