MSC
09/14/2022, 9:31 PMmockkStatic
? I'm having issues when running tests in parallel due to mocking using mockkStatic
The only way I've managed to make it work was with @Isolated
annotation at the top of each test class.
TIAephemient
09/14/2022, 9:40 PM@Isolated
I'll assume you're using JUnit 5ephemient
09/14/2022, 9:41 PMephemient
09/14/2022, 9:42 PMmockkStatic
) between them. but while there were ways of achieving that in JUnit 4, there are not in JUnit 5. https://github.com/junit-team/junit5/issues/201MSC
09/14/2022, 9:56 PM