-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Remove deprecated JUnit related support in TestNG #3023
Remove deprecated JUnit related support in TestNG #3023
Conversation
@juherr |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lgtm but remove junit reference from dtd 1.1
54b0732
to
d1d73ee
Compare
Took care of this as well. Once you have approved after review, I will continue to keep this PR open and rebased so that it can be merged at a later point in time (Perhaps 2nd or 3rd week of Jan). |
d1d73ee
to
d5f26b9
Compare
@@ -545,11 +540,6 @@ private List<XmlSuite> createCommandLineSuitesForClasses(Class[] classes) { | |||
if (test != null) { | |||
suiteName = defaultIfStringEmpty(test.getSuiteName(), suiteName); | |||
testName = defaultIfStringEmpty(test.getTestName(), testName); | |||
} else { | |||
if (m_isMixed && JUnitTestFinder.isJUnitTest(c)) { | |||
isJUnit = true; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
isJUnit declaration should be removed too
Closes #3022
Fixes #3022 .
Did you remember to?
CHANGES.txt
./gradlew autostyleApply
We encourage pull requests that:
If your pull request involves fixing SonarQube issues then we would suggest that you please discuss this with the
TestNG-dev before you spend time working on it.
Note: For more information on contribution guidelines please make sure you refer our Contributing section for detailed set of steps.