-
-
Notifications
You must be signed in to change notification settings - Fork 357
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Need Junit 5 Support #340
Comments
Hello, I would really have support for Junit5 also.... Thanks for your work! |
any updates on this? |
There's a pretty straight forward solution to this, when adding 3 classes as specified here https://medium.com/javarevisited/junit-5-spark-testing-bc8eb29b2238. I think this shall get merged to |
It would be great to get it merged - I dont have Membership for medium to look at above link - would be helpful for all if it merges. |
I was trying to use spark-testing-base with Junit 5 but even after extending SharedJavaSparkContext I was getting jsc() as null. On a quick look I found that SharedJavaSparkContext is expecting junit 4(org.junit.Test).So in my method with junit5 @test(org.junit.jupiter.api.Test) jsc() was coming as null. If I move to junit4 everything works fine.As we are moving to junit5 I believe this is a must have change in the lib.
The text was updated successfully, but these errors were encountered: