About 400 results
Open links in new tab
  1. NUnit.org

    What Is NUnit? NUnit is a unit-testing framework for all .Net languages. Initially ported from JUnit, the current production release, version 3, has been completely rewritten with many new …

  2. NUnit Documentation Site | NUnit Docs

    NUnit covers the core tools of NUnit, including the framework, NUnitLite, and the console runner. NUnit VS Adapter covers the test adapters for Visual Studio and .Net.

  3. .NET Core | NUnit Docs

    The test projects have to be .NET (Core) or .NET Framework; .NET Standard can't be used as a test project, since it can't be run on its own, but any code in a .NET Standard library can be …

  4. Downloads - NUnit

    Mar 31, 2022 · Downloads Download Types The preferred way to download NUnit is through the NuGet package manager. The latest releases of can always be found on the relevant GitHub …

  5. Architectural Overview | NUnit Docs

    Through use of plugins in the Test Engine layer, NUnit will be able to recognize, load and run tests written using other frameworks. Our focus will be on facilitating the creation of plugins in …

  6. Attributes | NUnit Docs

    All NUnit attributes are contained in the NUnit.Framework namespace. Each source file that contains tests must include a using statement for that namespace and the project must …

  7. Assertions | NUnit Docs

    Assertions are central to unit testing in any of the xUnit frameworks, and NUnit is no exception. NUnit provides a rich set of assertions as static methods of the Assert class.

  8. Test | NUnit Docs

    The Test attribute is one way of marking a method inside a TestFixture class as a test. It is normally used for simple (non-parameterized) tests but may also be applied to parameterized …

  9. Supported Frameworks | NUnit Docs

    The adapter is shipped with three different versions of the test framework. The first is the full framework version, which is used for .NET Framework based test projects.

  10. TestFixture | NUnit Docs

    Beginning with NUnit 2.5, the TestFixture attribute is optional for non-parameterized, non-generic fixtures. So long as the class contains at least one method marked with the Test, TestCase or …