Skip to content
#

xunit

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

Clockwork-Muse
Clockwork-Muse commented Dec 13, 2021

Currently, when comparing strings, options like ignoreLineEndingDifferences and ignoreWhiteSpaceDifferences require there be at least one instance of the various characters

// Succeeds
Assert.Equal("    ", " ", ignoreWhiteSpaceDifferences: true);
// Fails
Assert.Equal("    ", String.Empty, ignoreWhiteSpaceDifferences: true);

... I'm looking for a way to compare two s

kenden
kenden commented Jun 14, 2018

As the moment it's only possible to install bats from bats-core from source on linux.

We should create packages to install easily on Linux.
It could be:

Flathub is probably the easiest to support most d

fluentassertions
bUnit

bUnit is a testing library for Blazor components that make tests look, feel, and runs like regular unit tests. bUnit makes it easy to render and control a component under test’s life-cycle, pass parameter and inject services into it, trigger event handlers, and verify the rendered markup from the component using a built-in semantic HTML comparer.

  • Updated Feb 18, 2022
  • C#

Improve this page

Add a description, image, and links to the xunit 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 xunit topic, visit your repo's landing page and select "manage topics."

Learn more