autofixture - AutoFixture.AutoMoq 5.0.0-preview0004

This extension turns AutoFixture into an Auto-Mocking Container. The mock instances are created by Moq. To use it, add the AutoMoqCustomization to your Fixture instance. Read more at http://blog.ploeh.dk/2010/08/19/AutoFixtureAsAnAutomockingContainer.aspx

PM> Install-Package AutoFixture.AutoMoq -Version 5.0.0-preview0004 -Source https://www.myget.org/F/autofixture/api/v3/index.json

Copy to clipboard

> nuget.exe install AutoFixture.AutoMoq -Version 5.0.0-preview0004 -Source https://www.myget.org/F/autofixture/api/v3/index.json

Copy to clipboard

> dotnet add package AutoFixture.AutoMoq --version 5.0.0-preview0004 --source https://www.myget.org/F/autofixture/api/v3/index.json

Copy to clipboard
<PackageReference Include="AutoFixture.AutoMoq" Version="5.0.0-preview0004" />
Copy to clipboard
source https://www.myget.org/F/autofixture/api/v3/index.json

nuget AutoFixture.AutoMoq  ~> 5.0.0-preview0004
Copy to clipboard

> choco install AutoFixture.AutoMoq --version 5.0.0-preview0004 --source https://www.myget.org/F/autofixture/api/v2

Copy to clipboard
Import-Module PowerShellGet
Register-PSRepository -Name "autofixture" -SourceLocation "https://www.myget.org/F/autofixture/api/v2"
Install-Module -Name "AutoFixture.AutoMoq" -RequiredVersion "5.0.0-preview0004" -Repository "autofixture" -AllowPreRelease
Copy to clipboard

Browse the sources in this package using Visual Studio or WinDbg by configuring the following symbol server URL: https://www.myget.org/F/autofixture/api/v2/symbolpackage/


AutoFixture

License release NuGet version NuGet preview version NuGet downloads AutoFixture

Write maintainable unit tests, faster.

AutoFixture makes it easier for developers to do Test-Driven Development by automating non-relevant Test Fixture Setup, allowing the Test Developer to focus on the essentials of each test case.

Check the testimonials to see what other people have to say about AutoFixture.

Table of Contents

Overview

(Jump straight to the CheatSheet if you just want to see some code samples right away.)

AutoFixture is designed to make Test-Driven Development more productive and unit tests more refactoring-safe. It does so by removing the need for hand-coding anonymous variables as part of a test's Fixture Setup phase. Among other features, it offers a generic implementation of the Test Data Builder pattern.

When writing unit tests, you typically need to create some objects that represent the initial state of the test. Often, an API will force you to specify much more data than you really care about, so you frequently end up creating objects that has no influence on the test, simply to make the code compile.

AutoFixture can help by creating such Anonymous Variables for you. Here's a simple example:

[Fact]
public void IntroductoryTest()
{
    // Arrange
    Fixture fixture = new Fixture();

    int expectedNumber = fixture.Create<int>();
    MyClass sut = fixture.Create<MyClass>();
    // Act
    int result = sut.Echo(expectedNumber);
    // Assert
    Assert.Equal(expectedNumber, result);
}

This example illustrates the basic principle of AutoFixture: It can create values of virtually any type without the need for you to explicitly define which values should be used. The number expectedNumber is created by a call to Create<T> - this will create a 'nice', regular integer value, saving you the effort of explicitly coming up with one.

The example also illustrates how AutoFixture can be used as a SUT Factory that creates the actual System Under Test (the MyClass instance).

Given the right combination of unit testing framework and extensions for AutoFixture, we can further reduce the above test to be even more declarative:

xUnit

[Theory, AutoData]
public void IntroductoryTest(int expectedNumber, MyClass sut)
{
    int result = sut.Echo(expectedNumber);
    Assert.Equal(expectedNumber, result);
}

NUnit

[Test, AutoData]
public void IntroductoryTest(int expectedNumber, MyClass sut)
{
    int result = sut.Echo(expectedNumber);
    Assert.Equal(expectedNumber, result);
}

Notice how we can reduce unit tests to state only the relevant parts of the test. The rest (variables, Fixture object) is relegated to attributes and parameter values that are supplied automatically by AutoFixture. The test is now only two lines of code.

Using AutoFixture is as easy as referencing the library and creating a new instance of the Fixture class!

Downloads

AutoFixture packages are distributed via NuGet.
To install the packages you can use the integrated package manager of your IDE, the .NET CLI, or reference the package directly in your project file.

dotnet add package AutoFixture --version 4.18.0
<PackageReference Include="AutoFixture" Version="4.18.0" />

AutoFixture offers a variety of utility packages and integrations with most of the major mocking libraries and testing frameworks.

Core packages

The core packages offer the full set of AutoFixture's features without requring any testing framework or third party integration.

Product Package Stable Preview Downloads
The core package AutoFixture NuGet NuGet NuGet
Assertion idioms AutoFixture.Idioms NuGet NuGet NuGet
Seed extensions AutoFixture.SeedExtensions NuGet NuGet NuGet

Mocking libraries

AutoFixture offers integations with most major .NET mocking libraries.
These integrations enable such features as configuring mocks, auto-injecting mocks, etc.

Product Package Stable Preview Downloads
Moq AutoFixture.AutoMoq NuGet NuGet NuGet
NSubstitute AutoFixture.AutoNSubstitute NuGet NuGet NuGet
FakeItEasy AutoFixture.AutoFakeItEasy NuGet NuGet NuGet
Rhino Mocks AutoFixture.AutoRhinoMocks NuGet NuGet NuGet

NOTE: Since AutoFixture tries maintain compatibility with a large number of package versions, the packages bundled with AutoFixture might not contain the latest features of your mocking library.
Make sure to install the latest version of the mocking library package, alongside the AutoFixture package.

Testing frameworks

AutoFixture offers integrations with most major .NET testing frameworks.
These integrations enable auto-generation of test cases, combining auto-generated data with inline arguments, etc.

Product Package Stable Preview Downloads
xUnit v3 AutoFixture.Xunit3 NuGet NuGet NuGet
xUnit v2 AutoFixture.Xunit2 NuGet NuGet NuGet
xUnit v1 AutoFixture.Xunit NuGet NuGet NuGet
NUnit v4 AutoFixture.NUnit4 NuGet NuGet NuGet
NUnit v3 AutoFixture.NUnit3 NuGet NuGet NuGet
NUnit v2 AutoFixture.NUnit2 NuGet NuGet NuGet
Foq AutoFixture.AutoFoq NuGet NuGet NuGet

You can check the compatibility with your target framework version on the wiki or on the NuGet website.

vNext feed

The artifacts of the next major version are published to nuget.org, and are marked with the preview suffix (e.g. 5.0.0-preview00007).
You can use these packages to early access and test the next major version of the AutoFixture.
Make sure to enable the preview packages in your IDE in order to see the latest version.

NOTE: This preview versions exists for the preview purpose only, so use them with caution:

  • New versions of packages might contain breaking changes and API could change drastically from package to package. By other words, we don't follow the SemVer policy for the packages in this feed;
  • Preview packages might be unlisted over time, in order to not clutter the version suggestion dialog in IDEs, but will generally remain available

Documentation

Additional resources

Feedback & Questions

If you have questions, feel free to ask. The best places to ask are:

License

AutoFixture is Open Source software and is released under the MIT license.
The licenses allows the use of AutoFixture libraries in free and commercial applications and libraries without restrictions.

.NET Foundation

This project is supported by the .NET Foundation.

  • .NETFramework 4.6.1
    • AutoFixture (>= 5.0.0-preview0004)
    • Moq (>= 4.1.1308.2120 && < 5.0.0)
  • .NETStandard 2.0
    • AutoFixture (>= 5.0.0-preview0004)
    • Moq (>= 4.7.49 && < 5.0.0)
  • .NETFramework 4.6.1: 4.6.1.0
  • .NETStandard 2.0: 2.0.0.0

Owners

Oleks Povar AutoFixture

Authors

Mark Seemann, AutoFixture

Project URL

https://github.com/AutoFixture/AutoFixture

License

MIT

Info

7103 total downloads
79 downloads for version 5.0.0-preview0004
Download (54.84 KB)
Download symbols (20.1 KB)
Found on the current feed only

Package history

Version Size Last updated Downloads Mirrored?
5.0.0-preview0005 54.8 KB Tue, 10 May 2022 20:36:18 GMT 96
5.0.0-preview0004 54.84 KB Thu, 24 Mar 2022 20:54:02 GMT 79
5.0.0-preview0003 82.64 KB Mon, 08 Nov 2021 21:45:20 GMT 95
4.0.0-alpha.281 40.09 KB Tue, 17 Oct 2017 19:09:21 GMT 102
4.0.0-alpha.280 40.08 KB Mon, 16 Oct 2017 21:51:54 GMT 95
4.0.0-alpha.277 40.1 KB Mon, 16 Oct 2017 20:57:10 GMT 101
4.0.0-alpha.276 40.11 KB Mon, 16 Oct 2017 20:48:38 GMT 98
4.0.0-alpha.275 40.22 KB Mon, 16 Oct 2017 10:39:37 GMT 83
4.0.0-alpha.274 40.23 KB Mon, 16 Oct 2017 10:01:04 GMT 97
4.0.0-alpha.273 40.22 KB Mon, 16 Oct 2017 09:15:01 GMT 95
4.0.0-alpha.272 40.24 KB Sun, 15 Oct 2017 12:48:20 GMT 82
4.0.0-alpha.271 40.23 KB Sun, 15 Oct 2017 11:48:53 GMT 74
4.0.0-alpha.270 40.24 KB Sat, 14 Oct 2017 20:46:43 GMT 79
4.0.0-alpha.269 40.21 KB Fri, 13 Oct 2017 09:27:55 GMT 82
4.0.0-alpha.268 40.22 KB Fri, 13 Oct 2017 08:13:53 GMT 107
4.0.0-alpha.267 40.22 KB Fri, 13 Oct 2017 07:58:50 GMT 70
4.0.0-alpha.266 40.23 KB Thu, 12 Oct 2017 12:48:48 GMT 78
4.0.0-alpha.265 40.21 KB Wed, 11 Oct 2017 11:49:36 GMT 90
4.0.0-alpha.263 40.23 KB Tue, 10 Oct 2017 20:34:21 GMT 99
4.0.0-alpha.262 40.31 KB Tue, 10 Oct 2017 17:21:18 GMT 84
4.0.0-alpha.261 40.27 KB Tue, 10 Oct 2017 13:35:44 GMT 80
4.0.0-alpha.260 40.23 KB Mon, 09 Oct 2017 08:57:16 GMT 108
4.0.0-alpha.259 40.2 KB Mon, 09 Oct 2017 08:49:59 GMT 99
4.0.0-alpha.258 40.3 KB Sun, 08 Oct 2017 21:32:27 GMT 76
4.0.0-alpha.257 40.29 KB Sun, 08 Oct 2017 16:10:00 GMT 83
4.0.0-alpha.256 40.28 KB Sun, 08 Oct 2017 13:38:33 GMT 103
4.0.0-alpha.255 40.26 KB Sat, 07 Oct 2017 23:33:31 GMT 86
4.0.0-alpha.254 40.2 KB Sat, 07 Oct 2017 23:09:43 GMT 85
4.0.0-alpha.253 40.26 KB Fri, 06 Oct 2017 09:23:35 GMT 91
4.0.0-alpha.252 40.26 KB Fri, 06 Oct 2017 08:57:10 GMT 75
4.0.0-alpha.251 40.21 KB Fri, 06 Oct 2017 08:03:53 GMT 98
4.0.0-alpha.250 40.1 KB Fri, 06 Oct 2017 07:56:55 GMT 81
4.0.0-alpha.249 40.12 KB Wed, 04 Oct 2017 09:25:59 GMT 100
4.0.0-alpha.248 40.13 KB Tue, 03 Oct 2017 11:57:43 GMT 102
4.0.0-alpha.247 40.13 KB Tue, 03 Oct 2017 10:51:14 GMT 87
4.0.0-alpha.246 40.11 KB Tue, 03 Oct 2017 10:44:30 GMT 83
4.0.0-alpha.245 40.15 KB Tue, 03 Oct 2017 10:37:04 GMT 86
4.0.0-alpha.244 40.14 KB Mon, 02 Oct 2017 10:54:32 GMT 88
4.0.0-alpha.243 40.15 KB Mon, 02 Oct 2017 09:33:35 GMT 98
4.0.0-alpha.242 26.77 KB Sun, 01 Oct 2017 18:39:23 GMT 95
4.0.0-alpha.241 26.63 KB Sat, 30 Sep 2017 21:00:37 GMT 89
4.0.0-alpha.240 26.62 KB Sat, 30 Sep 2017 20:42:22 GMT 91
4.0.0-alpha.238 26.62 KB Thu, 21 Sep 2017 16:34:11 GMT 77
4.0.0-alpha.237 26.62 KB Thu, 21 Sep 2017 08:51:55 GMT 100
4.0.0-alpha.236 26.63 KB Wed, 20 Sep 2017 19:13:20 GMT 88
4.0.0-alpha.235 26.62 KB Tue, 19 Sep 2017 13:23:36 GMT 92
4.0.0-alpha.234 26.62 KB Tue, 19 Sep 2017 09:08:06 GMT 82
4.0.0-alpha.233 26.62 KB Mon, 18 Sep 2017 10:13:45 GMT 76
4.0.0-alpha.232 26.62 KB Mon, 18 Sep 2017 09:30:36 GMT 92
4.0.0-alpha.231 26.61 KB Mon, 18 Sep 2017 09:19:42 GMT 90
4.0.0-alpha.230 26.62 KB Thu, 14 Sep 2017 07:25:41 GMT 76
4.0.0-alpha.229 26.61 KB Wed, 13 Sep 2017 12:24:13 GMT 91
4.0.0-alpha.228 26.61 KB Tue, 12 Sep 2017 11:35:14 GMT 75
4.0.0-alpha.227 26.62 KB Tue, 12 Sep 2017 08:28:57 GMT 81
4.0.0-alpha.226 26.61 KB Mon, 11 Sep 2017 08:23:51 GMT 87
4.0.0-alpha.225 26.61 KB Mon, 11 Sep 2017 08:17:41 GMT 80
4.0.0-alpha.224 26.61 KB Mon, 11 Sep 2017 08:11:52 GMT 82
4.0.0-alpha.223 26.62 KB Fri, 08 Sep 2017 08:48:39 GMT 85
4.0.0-alpha.222 26.61 KB Thu, 07 Sep 2017 08:07:28 GMT 86
4.0.0-alpha.221 26.62 KB Wed, 06 Sep 2017 13:08:47 GMT 76
4.0.0-alpha.220 26.62 KB Wed, 06 Sep 2017 12:28:55 GMT 102
4.0.0-alpha.219 26.61 KB Wed, 06 Sep 2017 09:33:15 GMT 72
4.0.0-alpha.218 26.61 KB Tue, 05 Sep 2017 09:09:16 GMT 98
4.0.0-alpha.217 26.62 KB Tue, 05 Sep 2017 08:54:11 GMT 77
4.0.0-alpha.216 26.61 KB Fri, 01 Sep 2017 10:56:09 GMT 98
4.0.0-alpha.215 26.62 KB Fri, 01 Sep 2017 08:57:09 GMT 83
4.0.0-alpha.214 26.62 KB Thu, 31 Aug 2017 11:14:04 GMT 104
4.0.0-alpha.213 14.36 KB Thu, 31 Aug 2017 10:53:39 GMT 80
4.0.0-alpha.212 14.36 KB Thu, 31 Aug 2017 10:05:50 GMT 71
4.0.0-alpha.211 14.36 KB Thu, 31 Aug 2017 09:29:48 GMT 105
4.0.0-alpha.210 14.35 KB Tue, 29 Aug 2017 10:13:44 GMT 71
4.0.0-alpha.209 14.36 KB Mon, 28 Aug 2017 08:44:23 GMT 100
4.0.0-alpha.208 14.37 KB Thu, 24 Aug 2017 22:50:34 GMT 105
4.0.0-alpha.207 14.37 KB Thu, 24 Aug 2017 22:41:33 GMT 91
4.0.0-alpha.206 14.37 KB Thu, 24 Aug 2017 09:51:56 GMT 109
4.0.0-alpha.205 14.37 KB Tue, 22 Aug 2017 09:44:10 GMT 107
4.0.0-alpha.204 14.59 KB Tue, 22 Aug 2017 09:00:14 GMT 86
4.0.0-alpha.203 14.6 KB Tue, 22 Aug 2017 08:49:13 GMT 89
4.0.0-alpha.202 14.59 KB Sun, 20 Aug 2017 07:15:04 GMT 75
4.0.0-alpha.201 14.59 KB Fri, 18 Aug 2017 11:24:59 GMT 94