posted on stackoverflow but has anyone ran into si...
# kotest
m
posted on stackoverflow but has anyone ran into similar issue here? I'm new to springboot and kotest https://stackoverflow.com/questions/71833886/springboot-test-fails-to-run
s
Sounds like you're missing a dependency on your classpath.
m
can you expand on what dependency i'm missing?
build.gradle.kts
Copy code
testImplementation("org.springframework.boot:spring-boot-starter-test:2.6.6")	testImplementation("io.kotest:kotest-runner-junit5:5.1.0")
	testImplementation("io.kotest.extensions:kotest-extensions-spring:1.1.0")
s
Copy code
java.lang.IllegalStateException: Failed to find merged annotation for @org.springframework.test.context.BootstrapWith(org.springframework.boot.test.context.SpringBootTestContextBootstrapper.class)
I don't know anything about spring so maybe you need other spring boot deps
147 Views