This is a suite of analyzers that target the NUnit testing framework. Right now, the code is separate from the NUnit framework, so if you want to try out the analyzers you'll need to download the analyzers separately as a nuget package. In the future the analyzers may be added as part of the NUnit framework package but that hasn't been done yet.
The latest stable release of the NUnit Analyzers is available on NuGet or can be downloaded from GitHub. Prerelease nuget packages can be found on MyGet. Please try out the package and report bugs and feature requests.
The full list of analyzers can be found in the documentation.
Below we give two examples of analyzers. One will look for methods with the [TestCase]
attribute and makes sure the argument values are correct for the types of the method parameters along with the ExpectedResult
value if it is provided.
The other analyzer looks for classic model assertions (e.g. Assert.AreEqual()
, Assert.IsTrue()
, etc.). This analyzer contains a fixer that can translate the classic model assertions into constraint model assertions (Assert.That()
).
NUnit analyzers are Open Source software and released under the MIT license, which allow the use of the analyzers in free and commercial applications and libraries without restrictions.
There are several ways to contribute to this project. One can try things out, report bugs, propose improvements and new functionality, work on issues (especially the issues marked with the labels help wanted and Good First Issue), and in general join in the conversations. See Contributing for more information.
This project has adopted the Code of Conduct from the Contributor Covenant, version 1.4, available at http://contributor-covenant.org/version/1/4. See the Code of Conduct for more information.
NUnit.Analyzers was created by Jason Bock. A complete list of contributors can be found on the GitHub contributors page.