Moq.AutoMock 3.6.0-ci0596

This is a prerelease version of Moq.AutoMock.
dotnet add package Moq.AutoMock --version 3.6.0-ci0596
NuGet\Install-Package Moq.AutoMock -Version 3.6.0-ci0596
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-ci0596" />
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-ci0596
#r "nuget: Moq.AutoMock, 3.6.0-ci0596"
#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-ci0596&prerelease

// Install Moq.AutoMock as a Cake Tool
#tool nuget:?package=Moq.AutoMock&version=3.6.0-ci0596&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 (21)

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 558 5/24/2024
3.6.0-ci0594 80 5/24/2024
3.6.0-ci0592 253 5/14/2024
3.6.0-ci0590 306 5/13/2024
3.6.0-ci0546 5,325 2/8/2024
3.6.0-ci0544 170 2/8/2024
3.6.0-ci0539 2,492 2/3/2024
3.6.0-ci0532 468 2/2/2024
3.5.0 3,027,610 1/4/2023
3.5.0-ci0332 574 1/4/2023
3.5.0-ci0331 616 1/4/2023
3.5.0-ci0287 17,991 10/10/2022
3.5.0-ci0285 1,868 10/3/2022
3.4.0 2,006,938 6/1/2022
3.4.0-ci0283 592 10/3/2022
3.4.0-ci0280 583 10/3/2022
3.4.0-ci0278 548 10/3/2022
3.4.0-ci0274 575 10/3/2022
3.4.0-ci0270 594 10/3/2022
3.4.0-ci0265 575 10/3/2022
3.4.0-ci0259 534 10/3/2022
3.4.0-ci0252 625 5/31/2022
3.3.1-ci0247 2,772 5/3/2022
3.3.1-ci0245 595 5/3/2022
3.3.1-ci0242 2,081 4/25/2022
3.3.0 844,423 2/23/2022
3.3.0-ci0240 734 4/25/2022
3.3.0-ci0221 944 2/21/2022
3.2.0 301,044 2/4/2022
3.2.0-ci0219 615 2/21/2022
3.2.0-ci0217 554 2/21/2022
3.2.0-ci0214 623 2/21/2022
3.2.0-ci0207 13,595 12/14/2021
3.2.0-ci0205 3,667 12/14/2021
3.1.0 711,243 10/29/2021
3.0.0 926,492 6/28/2021
3.0.0-ci0203 663 12/6/2021
3.0.0-ci0198 695 10/25/2021
3.0.0-ci0195 718 10/25/2021
3.0.0-ci0192 666 9/18/2021
3.0.0-ci0183 663 9/1/2021
3.0.0-ci0177 731 6/25/2021
3.0.0-ci0170 2,482 5/12/2021
3.0.0-ci0168 2,658 4/22/2021
3.0.0-ci0164 693 4/20/2021
3.0.0-ci0155 2,559 4/13/2021
3.0.0-ci0146 47,945 1/22/2021
3.0.0-ci0145 1,425 1/16/2021
2.3.0 1,464,650 12/15/2020
2.3.0-ci0136 795 12/15/2020
2.2.0.124 140,619 12/8/2020
2.2.0.123-ci 834 12/8/2020
2.2.0.120-ci 36,066 11/24/2020
2.2.0.115-ci 803 11/23/2020
2.2.0.113-ci 776 11/23/2020
2.1.0.104-ci 847 11/23/2020
2.1.0.99-ci 828 11/23/2020
2.1.0 660,243 9/9/2020
2.1.0-ci0019 844 9/9/2020
2.0.1 617,872 5/24/2020
2.0.1-ci0017 938 5/24/2020
2.0.0 182,702 4/6/2020
2.0.0-ci0015 906 5/5/2020
2.0.0-ci0014 865 5/5/2020
2.0.0-ci0012 910 4/6/2020
2.0.0-ci0011 925 4/6/2020
1.2.0.131-pre 393,745 2/5/2020
1.2.0.128-pre 914 2/5/2020
1.2.0.127-pre 945 2/5/2020
1.2.0.122-pre 113,750 5/17/2019
1.2.0.120 1,738,219 12/6/2018
1.2.0.118-pre 1,132 12/6/2018
1.2.0.116-pre 1,132 12/6/2018
1.2.0.113-pre 4,804 8/1/2018
1.2.0.111 176,047 7/25/2018
1.2.0.109-pre 1,273 7/25/2018
1.1.0.107-pre 1,239 7/25/2018
1.1.0.105-pre 1,341 7/25/2018
1.1.0.104-pre 1,436 7/25/2018
1.1.0.96 23,490 6/8/2018
1.1.0.94-pre 1,416 6/8/2018
1.1.0.92-pre 1,426 6/8/2018
1.1.0.85-pre 1,526 6/7/2018
1.1.0.68-pre 1,401 6/4/2018
1.0.60 138,950 5/31/2018
1.0.56-pre 1,395 5/31/2018
1.0.52-pre 1,447 5/31/2018
1.0.48-pre 1,438 5/31/2018
1.0.44-pre 1,428 5/31/2018
1.0.41-pre 1,451 5/30/2018
1.0.38-pre 1,460 5/30/2018
1.0.35-pre 1,468 5/30/2018
1.0.32-pre 1,445 5/30/2018
0.4.0 630,695 9/7/2015
0.3.2.1 119,077 12/27/2012
0.3.2 2,136 8/23/2012
0.3.1 1,882 8/23/2012
0.3.0 3,985 8/23/2012
0.2.2 3,103 7/18/2012
0.2.1 1,975 7/18/2012
0.2.0 1,910 7/18/2012
0.1.0 16,237 7/18/2012