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 9dc58a2 commit 1ba54efCopy full SHA for 1ba54ef
api/src/test/java/io/kafbat/ui/serdes/builtin/ProtobufFileSerdeTest.java
@@ -80,14 +80,15 @@ void setUp() throws Exception {
80
void loadsAllProtoFiledFromTargetDirectory() throws Exception {
81
var protoDir = ResourceUtils.getFile("classpath:protobuf-serde/").getPath();
82
List<ProtoFile> files = new ProtobufFileSerde.ProtoSchemaLoader(protoDir).load();
83
- assertThat(files).hasSize(4);
+ assertThat(files).hasSize(5);
84
assertThat(files)
85
.map(f -> f.getLocation().getPath())
86
.containsExactlyInAnyOrder(
87
"language/language.proto",
88
"sensor.proto",
89
"address-book.proto",
90
- "lang-description.proto"
+ "lang-description.proto",
91
+ "messagewithany.proto"
92
);
93
}
94
0 commit comments