xUnit is the collection name for unit-testing compliant frameworks following a specific architecture.
What is xUnit's equivalent of NUnit's [TestFixtureSetUp]? We have explored and found that IUseFixture<T> is the equivalent …
nunit xunitI am working on this WebAPI project and I need to create unit tests for it. The base of the …
c# unit-testing asp.net-web-api moq xunitI have a test class with a constructor that needs an IService. public class ConsumerTests { private readonly IService _service; public …
unit-testing testing dependency-injection ioc-container xunitI keep getting this error while using xunit for .NET 1.0 framework net46. The following constructor parameters did not have matching …
.net xunitI'm trying to setup unit tests for my web API. I've hacked together some test code from bits and pieces …
c# unit-testing asp.net-web-api xunit xunit.netI am completely stuck on this issue. So my team has a unit test project in a services test project. …
c# .net windows-10 visual-studio-2017 xunitContext in XUnit github I found this: Add Assert.Equal(expected, actual, message) overload #350 (so a developer ask for a …
c# unit-testing xunit assertions xunit2I have a unit test project using Xunit and the method we are testing returns IActionResult. I saw some people …
c# unit-testing asp.net-core xunit asp.net-core-webapiI'm learning xUnit and so far, have found it to be a most useful tool. It's making me rethink some …
c# .net unit-testing debugging xunitI want to compare a list of objects, ignoring the order of the objects in the list and only comparing …
c# unit-testing xunit fluent-assertions