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

nunit

Here are 395 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

mikkelbu
mikkelbu commented Apr 23, 2019

This is a corner case that I only ran into in due to work on the analyzers in nunit/nunit.analyzers#54, and my guess is that very few will run into this problem. Nevertheless, I think we could improve the error message, and fix seems simple and safe.

Given a generic test method with no parameters we get a failure that is difficult to interpret for the users (see last example below for more deta

bUnit
egil
egil commented Nov 24, 2020

If a component has a child content parameter that is a RenderFragment<TValue>, then the parameter builder's AddChildContent method should throw an exception with an error message telling the user to use .Add(p => p.ChildContent, ...) instead.

For example, the following should throw an helpful exception:

var cut = RenderComponent<Virtualize<string>>(ps => ps
	.Add(p => p.Items, Te
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 Jan 23, 2022
  • 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