The Wayback Machine - https://web.archive.org/web/20211005133946/https://github.com/topics/nunit
Skip to content
#

nunit

Here are 371 public repositories matching this topic...

augustoproiete
augustoproiete commented Nov 21, 2020

Currently when calling the MSBuild alias with an MSBuildSettings, we need to set the target using the WithTarget extension method.

MSBuild("./my-app.sln", new MSBuildSettings
{
    Configuration = "Release",
    ToolVersion = MSBuildToolVersion.VS2019,
}.WithTarget("Build")); // <<<###

It would be nice if we could use a property, with a string, which would make it more na

stevenaw
stevenaw commented Sep 18, 2021

The object + type overloads of Numerics.IsFloatingPointNumeric were updated in nunit/nunit#3831 to return true when given a decimal. For consistency, we should ensure the IsFixedPointNumeric function returns false when given a decimal. This should just be a matter of removing this line: https://github.com/nunit/nunit/blob/master/src/NUnitFramework/framework/Constraint

NBi

NBi is a testing framework (add-on to NUnit) for Business Intelligence and Data Access. The main goal of this framework is to let users create tests with a declarative approach based on an Xml syntax. By the means of NBi, you don't need to develop C# or Java code to specify your tests! Either, you don't need Visual Studio or Eclipse to compile your test suite. Just create an Xml file and let the framework interpret it and play your tests. The framework is designed as an add-on of NUnit but with the possibility to port it easily to other testing frameworks.

  • Updated Sep 17, 2021
  • C#

Improve this page

Add a description, image, and links to the nunit topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the nunit topic, visit your repo's landing page and select "manage topics."

Learn more