-
Notifications
You must be signed in to change notification settings - Fork 35
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
Feature/fix categories parsing #11
base: master
Are you sure you want to change the base?
Feature/fix categories parsing #11
Conversation
Which NUnit version contains this element? |
Categories are output as property name-value pairs as of NUnit 3. e.g. See: https://nunit.org/files/testresult_30.txt Probably should change this add support for the version 3 XML schema rather than overwriting support for version 2 |
Yes, that's right, that's how categories are handled in the version 3. Having a new dedicated parser for version 3 is definitely a good idea. |
Maybe. But for now, I would suggest editing the pull request to include both the |
Speaking in terms of clean code, I am not sure whether that's a good solution; it will fix the issue but it will introduce a kind of code smell, if you ask me. If you want to keep it simple, I would rather give up the compatibility with NUnit 2, which is no longer maintained. But I leave the final decision to you. |
Are there any updates on this? |
No description provided.