Moq.AutoMock 3.6.0-ci0590

This is a prerelease version of Moq.AutoMock.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Moq.AutoMock --version 3.6.0-ci0590
NuGet\Install-Package Moq.AutoMock -Version 3.6.0-ci0590
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Moq.AutoMock" Version="3.6.0-ci0590" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Moq.AutoMock --version 3.6.0-ci0590
#r "nuget: Moq.AutoMock, 3.6.0-ci0590"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Moq.AutoMock as a Cake Addin
#addin nuget:?package=Moq.AutoMock&version=3.6.0-ci0590&prerelease

// Install Moq.AutoMock as a Cake Tool
#tool nuget:?package=Moq.AutoMock&version=3.6.0-ci0590&prerelease

Moq.AutoMock Continuous NuGet Status

An automocking container for Moq. Use this if you're invested in your IoC container and want to decouple your unit tests from changes to their constructor arguments.

Usage

Simplest usage is to build an instance that you can unit test.

var mocker = new AutoMocker();
var car = mocker.CreateInstance<Car>();

car.DriveTrain.ShouldNotBeNull();
car.DriveTrain.ShouldImplement<IDriveTrain>();
Mock<IDriveTrain> mock = Mock.Get(car.DriveTrain);

If you have a special instance that you need to use, you can register it with .Use(...). This is very similar to registrations in a regular IoC container (i.e. For<IService>().Use(x) in StructureMap).

var mocker = new AutoMocker();

mocker.Use<IDriveTrain>(new DriveTrain());
// OR, setup a Mock
mocker.Use<IDriveTrain>(x => x.Shaft.Length == 5);

var car = mocker.CreateInstance<Car>();

Extracting Mocks

At some point you might need to get to a mock that was auto-generated. For this, use the .Get<>() or .GetMock<>() methods.

var mocker = new AutoMocker();

// Let's say you have a setup that needs verifying
mocker.Use<IDriveTrain>(x => x.Accelerate(42) == true);

var car = mocker.CreateInstance<Car>();
car.Accelerate(42);

// Then extract & verify
var driveTrainMock = mocker.GetMock<IDriveTrain>();
driveTrainMock.VerifyAll();

Alternately, there's an even faster way to verify all mocks in the container:

var mocker = new AutoMocker();
mocker.Use<IDriveTrain>(x => x.Accelerate(42) == true);

var car = mocker.CreateInstance<Car>();
car.Accelerate(42);

// This method verifies all mocks in the container
mocker.VerifyAll();
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (29)

Showing the top 5 NuGet packages that depend on Moq.AutoMock:

Package Downloads
Reo.Core.Testing

Package Description

Relay.Core.Plugins.NUnit

Plugins available for the Core framework

Relay.Web.Testing

A web testing framework built for .NET Core

Relay.Microservices.Testing

A microservice testing framework built for .NET Core

Relay.Web.Testing.AzureFunctions

A web testing framework built for .NET Core

GitHub repositories (20)

Showing the top 5 popular GitHub repositories that depend on Moq.AutoMock:

Repository Stars
Ombi-app/Ombi
Want a Movie or TV Show on Plex/Emby/Jellyfin? Use Ombi!
dotnet/extensions
This repository contains a suite of libraries that provide facilities commonly needed when creating production-ready applications.
matthewrenze/clean-architecture-demo
A sample app for my online course "Clean Architecture: Patterns, Practices, and Principles" in .NET Framework 4.8
yourtablecloth/TableCloth
식탁보 프로젝트
colinin/abp-next-admin
这是基于vue-vben-admin 模板适用于abp Vnext的前端管理项目
Version Downloads Last updated
3.6.0-ci0596 125 5/24/2024
3.6.0-ci0594 72 5/24/2024
3.6.0-ci0592 195 5/14/2024
3.6.0-ci0590 102 5/13/2024
3.6.0-ci0546 4,999 2/8/2024
3.6.0-ci0544 169 2/8/2024
3.6.0-ci0539 2,147 2/3/2024
3.6.0-ci0532 444 2/2/2024
3.5.0 2,758,569 1/4/2023
3.5.0-ci0332 566 1/4/2023
3.5.0-ci0331 614 1/4/2023
3.5.0-ci0287 17,801 10/10/2022
3.5.0-ci0285 1,834 10/3/2022
3.4.0 1,951,534 6/1/2022
3.4.0-ci0283 582 10/3/2022
3.4.0-ci0280 572 10/3/2022
3.4.0-ci0278 543 10/3/2022
3.4.0-ci0274 564 10/3/2022
3.4.0-ci0270 589 10/3/2022
3.4.0-ci0265 565 10/3/2022
3.4.0-ci0259 529 10/3/2022
3.4.0-ci0252 617 5/31/2022
3.3.1-ci0247 2,762 5/3/2022
3.3.1-ci0245 593 5/3/2022
3.3.1-ci0242 2,079 4/25/2022
3.3.0 833,498 2/23/2022
3.3.0-ci0240 732 4/25/2022
3.3.0-ci0221 908 2/21/2022
3.2.0 295,106 2/4/2022
3.2.0-ci0219 613 2/21/2022
3.2.0-ci0217 552 2/21/2022
3.2.0-ci0214 621 2/21/2022
3.2.0-ci0207 13,497 12/14/2021
3.2.0-ci0205 3,665 12/14/2021
3.1.0 702,604 10/29/2021
3.0.0 908,173 6/28/2021
3.0.0-ci0203 661 12/6/2021
3.0.0-ci0198 693 10/25/2021
3.0.0-ci0195 716 10/25/2021
3.0.0-ci0192 664 9/18/2021
3.0.0-ci0183 661 9/1/2021
3.0.0-ci0177 729 6/25/2021
3.0.0-ci0170 2,474 5/12/2021
3.0.0-ci0168 2,652 4/22/2021
3.0.0-ci0164 691 4/20/2021
3.0.0-ci0155 2,557 4/13/2021
3.0.0-ci0146 47,616 1/22/2021
3.0.0-ci0145 1,411 1/16/2021
2.3.0 1,453,834 12/15/2020
2.3.0-ci0136 792 12/15/2020
2.2.0.124 138,779 12/8/2020
2.2.0.123-ci 831 12/8/2020
2.2.0.120-ci 35,761 11/24/2020
2.2.0.115-ci 800 11/23/2020
2.2.0.113-ci 773 11/23/2020
2.1.0.104-ci 844 11/23/2020
2.1.0.99-ci 825 11/23/2020
2.1.0 653,856 9/9/2020
2.1.0-ci0019 840 9/9/2020
2.0.1 614,320 5/24/2020
2.0.1-ci0017 930 5/24/2020
2.0.0 181,443 4/6/2020
2.0.0-ci0015 904 5/5/2020
2.0.0-ci0014 863 5/5/2020
2.0.0-ci0012 908 4/6/2020
2.0.0-ci0011 923 4/6/2020
1.2.0.131-pre 393,672 2/5/2020
1.2.0.128-pre 912 2/5/2020
1.2.0.127-pre 938 2/5/2020
1.2.0.122-pre 113,583 5/17/2019
1.2.0.120 1,711,661 12/6/2018
1.2.0.118-pre 1,130 12/6/2018
1.2.0.116-pre 1,130 12/6/2018
1.2.0.113-pre 4,800 8/1/2018
1.2.0.111 175,506 7/25/2018
1.2.0.109-pre 1,271 7/25/2018
1.1.0.107-pre 1,237 7/25/2018
1.1.0.105-pre 1,339 7/25/2018
1.1.0.104-pre 1,434 7/25/2018
1.1.0.96 23,483 6/8/2018
1.1.0.94-pre 1,414 6/8/2018
1.1.0.92-pre 1,418 6/8/2018
1.1.0.85-pre 1,524 6/7/2018
1.1.0.68-pre 1,399 6/4/2018
1.0.60 138,944 5/31/2018
1.0.56-pre 1,387 5/31/2018
1.0.52-pre 1,445 5/31/2018
1.0.48-pre 1,436 5/31/2018
1.0.44-pre 1,426 5/31/2018
1.0.41-pre 1,449 5/30/2018
1.0.38-pre 1,458 5/30/2018
1.0.35-pre 1,466 5/30/2018
1.0.32-pre 1,443 5/30/2018
0.4.0 624,425 9/7/2015
0.3.2.1 118,418 12/27/2012
0.3.2 2,133 8/23/2012
0.3.1 1,879 8/23/2012
0.3.0 3,982 8/23/2012
0.2.2 3,100 7/18/2012
0.2.1 1,972 7/18/2012
0.2.0 1,902 7/18/2012
0.1.0 15,869 7/18/2012