-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Description
Is it possible to use spring-kafka-test
without AssertJ?
I've project with kotlin and excluded assertj from spring-boot-starter-test
, 'cause we use more kotlin-style assert library and code is really messy when you have two strict library at once. Right now after added dependency spring-kafka-test
and enable it, I've java.lang.NoClassDefFoundError: org/assertj/core/util/Arrays
. The problem's line of code:
Line 110 in cda70d4
.filter(extended -> Arrays.asList(extended.value()).contains(SpringExtension.class)) |
It's strange to use assertj here, but maybe it's not the one problem.
Is it better to include asstertj to test scope?
Sorry for my English =)