AutoFixture is an open source library for .NET designed to minimize the 'Arrange' phase of your unit tests.
I'm new to xUnit.net and AutoFixture. I'm currently working on a "testproject" to get familiar with xUnit.net and …
c# xunit.net autofixtureI'm trying to verify that a method within a mock is called with an expected object parameter. I'm using Moq, …
nunit moq autofixtureWhen using AutoFixture's Build method for some type, how can I limit the length of the strings generated to fill …
c# autofixtureI was looking at nuget and wanted to import moq when I noticed AutoFixture AutoMoq. I see that AutoFixture is …
moq autofixtureI am trying to use autofixture to create an object but there are certain properties that I want to always …
c# .net unit-testing autofixtureBefore starting, I'm a big fan of AutoFixture, I'm still in the curve of learning how to use the tool. …
c# autofixtureI'm reading a lot of documentation and examples about how to properly unit test things combining the three components in …
c# unit-testing moq xunit.net autofixtureI have the following class: class Foo { public Foo(string str, int i, bool b, DateTime d, string str2) { ..... } } I'm …
c# autofixtureI've just started to use AutoFixture.AutoMoq in my unit tests and I'm finding it very helpful for creating objects …
c# unit-testing autofixture automockingWe have an MVC project with references to WCF services. Those references added (ExtensionDataObject)ExtensionData property to every DTO and …
c# .net autofixture