Eric Driggs

Results 23 comments of Eric Driggs

**Root Cause** 1. core module has an api dependency on junit 4. * https://github.com/testcontainers/testcontainers-java/blob/main/core/build.gradle#L72 ``` dependencies { api 'junit:junit:4.13.2' ``` 2. Generic module requires Junit 4 TestRule * https://github.com/testcontainers/testcontainers-java/issues/970 **Blocked...

Yes, a fix would require a complete refactor from Junit4 TestRule to Junit5 AfterEachCallback and BeforeEachCallback. Since there's no common interface, this would be a major version breaking change with...

It seems like vintage engine might provide value to testcontainers project as a transitionary point. From a client perspective it seems roughly equivalent, since the junit4 annotations are still used...