-
Notifications
You must be signed in to change notification settings - Fork 134
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
Junit5 test skipped #591
Comments
@SupinePandora43 Could you please provide a sample project which can repro this issue? This could help to investigate the problem. |
https://yadi.sk/d/J-ga40z38nsNWQ - my project |
@SupinePandora43 Thank you for sharing your project. Here are some problems with your project that I've observed:
I'm closing this issue since it does not look like a problem of the Test Runner. But feel free to let us know your problem if you have any. Thanks. |
how add -n option to runner? i trying to create config(java.test.config), but i see 'Unrecognized option: -n'. @jdneo |
@SupinePandora43 How about changing the class name from |
@SupinePandora43 By the way, during investigating the problem, I found a bug which will cause the problem Thank you for let us know this problem! |
@jdneo thanks, i just create class MainTest, but first trying add -n option to runner! |
i use #470 fix.
i can run Junit4 test cases, but not Junit5.
if i write:
@org.junit.Test // passed
public void Junit4Test(){
assertEquals(1,1);
}
@org.junit.jupiter.api.Test // skipped
public void Junit5Test(){
assertEquals(1,1);
}
but if i write junit5 test first, junit5 and junit4 test's skipped
(junit5/4 from jar in test runner extension (included using .classpath))
The text was updated successfully, but these errors were encountered: