How to properly annotate BaseTests for CDC with spring-cloud-contract?
I'm using currently
@RunWith(SpringRunner.class)
@SpringBootTest(classes = {WithoutDbConfig.class, SomeController.class})
public abstract class BaseControllerTest {
as it is specified in https://spring.io/guides/gs/contract-rest/
Anybody runs it with Junit5?