Created
November 24, 2020 03:02
-
-
Save billydh/e441ede494d8837f4a8c323f6f8cf58d to your computer and use it in GitHub Desktop.
initial class structure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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