Summary
Create an html report that shows the differences between two NUnit runs (New tests, removed tests, tests now failing, tests now passing).
Detailed
In short, I want to be able to have my results from Master, run the tests on my feature branch, then see which tests I fixed and/or broke as a result. There are many integrations/tools out there to help visualize results from NUnit tests. The Test Results view within Jenkins provides a great Diff report, however it only works for two concurrent builds of the same job. If I want to take an build from a separate branch and compare to the latest build of master, I'm stuck trying to do XML diffs.
I've scoured the internet as I would think I'm not the only one looking to do something like this, but I've come up empty. Please let me know if you can think of any other solutions to this problem.
It seems this project hasn't been touched in a while, this may not be the right place for this, but it's the closest I've seen to a generic NUnit solution. I'd be willing to help work on this if you think it's worthwhile.
Version
I'm currently working with NUnit 3.9, so it looks like this project would need to first support the new TestResult.xml formats (from #11).
Summary
Create an html report that shows the differences between two NUnit runs (New tests, removed tests, tests now failing, tests now passing).
Detailed
In short, I want to be able to have my results from Master, run the tests on my feature branch, then see which tests I fixed and/or broke as a result. There are many integrations/tools out there to help visualize results from NUnit tests. The Test Results view within Jenkins provides a great Diff report, however it only works for two concurrent builds of the same job. If I want to take an build from a separate branch and compare to the latest build of master, I'm stuck trying to do XML diffs.
I've scoured the internet as I would think I'm not the only one looking to do something like this, but I've come up empty. Please let me know if you can think of any other solutions to this problem.
It seems this project hasn't been touched in a while, this may not be the right place for this, but it's the closest I've seen to a generic NUnit solution. I'd be willing to help work on this if you think it's worthwhile.
Version
I'm currently working with
NUnit 3.9, so it looks like this project would need to first support the new TestResult.xml formats (from #11).