We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5c68ea commit f7b4de9Copy full SHA for f7b4de9
README.adoc
@@ -88,10 +88,19 @@ class ExpectedMessagesTest {
88
}
89
90
@Test
91
- @ExpectedMessages(topic = "another-topic", datasetFile = "/datasets/expected_another_event.json")
92
- void anotherTopic() {
93
- kafkaTemplate.send("another-topic", Bar.builder().time(new Date()).build());
94
- }
+ @ExpectedMessages(topic = "another-topic", datasetFile = "/datasets/expected_another_event.json")
+ void anotherTopic() {
+ kafkaTemplate.send("another-topic", Bar.builder().time(new Date()).build());
+ }
95
+}
96
+
97
+class Foo {
98
+ String value;
99
100
101
+class Bar {
102
+ String name;
103
+ Date time;
104
105
----
106
0 commit comments