https://github.com/detunized/nunit2xunit
NUnit to xUnit automatic conversion tool (PoC)
https://github.com/detunized/nunit2xunit
csharp nunit refactoring refactoring-tools roslyn xunit
Last synced: 3 months ago
JSON representation
NUnit to xUnit automatic conversion tool (PoC)
- Host: GitHub
- URL: https://github.com/detunized/nunit2xunit
- Owner: detunized
- License: mit
- Created: 2019-03-02T11:30:32.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-10-29T10:07:37.000Z (about 1 year ago)
- Last Synced: 2024-10-29T12:11:27.280Z (about 1 year ago)
- Topics: csharp, nunit, refactoring, refactoring-tools, roslyn, xunit
- Language: C#
- Homepage:
- Size: 17.6 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NUnit to xUnit automatic conversion tool (PoC)
The code here a proof of concept, not a ready to use tool. But it works. It
converts a few types of NUnit `Assert` expressions to their equivalents in
xUnit. It also cleans up a couple of other small things, like `[Test]` to
`[Fact]` conversion or removal of `[TestFixture]`.
I wrote about this project in detail [here][blog1], [here][blog2] and
[here][blog3].
## License
The library is released under [the MIT license][mit]. See [LICENSE][license]
for details.
[mit]: http://www.opensource.org/licenses/mit-license.php
[license]: LICENSE
[blog1]: https://detunized.net/posts/2019-03-12-nunit-to-xunit-automatic-test-conversion/
[blog2]: https://detunized.net/posts/2019-03-16-nunit-to-xunit-automatic-test-conversion-pattern-match/
[blog3]: https://detunized.net/posts/2019-03-26-nunit-to-xunit-automatic-test-conversion-code-rewrite/