Skip to content

Commit f7b4de9

Browse files
committed
fix readme
1 parent b5c68ea commit f7b4de9

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

README.adoc

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,19 @@ class ExpectedMessagesTest {
8888
}
8989
9090
@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-
}
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+
}
95+
}
96+
97+
class Foo {
98+
String value;
99+
}
100+
101+
class Bar {
102+
String name;
103+
Date time;
95104
}
96105
----
97106

0 commit comments

Comments
 (0)