Moq.AutoMock
3.6.0-ci0539
See the version list below for details.
dotnet add package Moq.AutoMock --version 3.6.0-ci0539
NuGet\Install-Package Moq.AutoMock -Version 3.6.0-ci0539
<PackageReference Include="Moq.AutoMock" Version="3.6.0-ci0539" />
<PackageVersion Include="Moq.AutoMock" Version="3.6.0-ci0539" />
<PackageReference Include="Moq.AutoMock" />
paket add Moq.AutoMock --version 3.6.0-ci0539
#r "nuget: Moq.AutoMock, 3.6.0-ci0539"
#addin nuget:?package=Moq.AutoMock&version=3.6.0-ci0539&prerelease
#tool nuget:?package=Moq.AutoMock&version=3.6.0-ci0539&prerelease
Moq.AutoMock

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 | Versions 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.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. |
-
.NETStandard 2.0
- Moq (>= 4.20.70)
- NonBlocking (>= 2.1.2)
NuGet packages (31)
Showing the top 5 NuGet packages that depend on Moq.AutoMock:
Package | Downloads |
---|---|
Reo.Core.Testing
Package Description |
|
Reo.Core.IntegrationTesting
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 |
GitHub repositories (21)
Showing the top 20 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"
|
|
colinin/abp-next-admin
这是基于vue-vben-admin 模板适用于abp vNext的前端管理项目
|
|
vknet/vk
Vkontakte API for .NET
|
|
lkurzyniec/netcore-boilerplate
Boilerplate of API in .NET 8
|
|
planetarium/libplanet
Blockchain in C#/.NET for on-chain, decentralized gaming
|
|
IngvarX/Camelot
Camelot is a cross-platform file manager written in C#
|
|
sandreas/tone
tone is a cross platform audio tagger and metadata editor to dump and modify metadata for a wide variety of formats, including mp3, m4b, flac and more. It has no dependencies and can be downloaded as single binary for Windows, macOS, Linux and other common platforms.
|
|
appget/appget
Free and open package manager for Windows.
|
|
karpach/remote-shutdown-pc
Remote Shutdown Manager is a windows application, which gives an ability to shutdown, suspend, hibernate PC or turn screen off using HTTP GET request.
|
|
IEvangelist/azure-cosmos-dotnet-repository
Wraps the .NET SDK for Azure Cosmos DB abstracting away the complexity, exposing a simple CRUD-based repository pattern
|
|
philosowaffle/peloton-to-garmin
Convert workout data from Peloton into JSON/TCX/FIT files and automatically upload to Garmin Connect
|
|
neo4j/neo4j-dotnet-driver
Neo4j Bolt driver for .NET
|
|
whuanle/maomi
Maomi 框架是一个简单的、简洁的开发框架,除了框架本身提供的功能之外,Maomi 还作为一个易于阅读的开源项目,能够给开发者提供设计框架的思路和代码。
|
|
Eremex/controls-demo
|
|
Lombiq/Orchard-Training-Demo-Module
Demo Orchard Core CMS and Orchard 1.x module for for you to become an Orchard developer. This module completes the training materials under https://orcharddojo.net.
|
|
aykutalparslan/Ferrite
Experimental Telegram Server
|
|
matthewrenze/clean-architecture-core
A sample app for my online course "Clean Architecture: Patterns, Practices, and Principles" in .NET Core
|
|
discord-csharp/MODiX
Discord Bot handling basic moderation needs, soon implements statistics.
|
Version | Downloads | Last updated |
---|---|---|
3.6.0-ci0596 | 31,445 | 5/24/2024 |
3.6.0-ci0594 | 139 | 5/24/2024 |
3.6.0-ci0592 | 3,598 | 5/14/2024 |
3.6.0-ci0590 | 1,417 | 5/13/2024 |
3.6.0-ci0546 | 10,827 | 2/8/2024 |
3.6.0-ci0544 | 227 | 2/8/2024 |
3.6.0-ci0539 | 7,044 | 2/3/2024 |
3.6.0-ci0532 | 575 | 2/2/2024 |
3.5.0 | 6,300,228 | 1/4/2023 |
3.5.0-ci0332 | 630 | 1/4/2023 |
3.5.0-ci0331 | 671 | 1/4/2023 |
3.5.0-ci0287 | 20,695 | 10/10/2022 |
3.5.0-ci0285 | 1,959 | 10/3/2022 |
3.4.0 | 2,490,014 | 6/1/2022 |
3.4.0-ci0283 | 649 | 10/3/2022 |
3.4.0-ci0280 | 633 | 10/3/2022 |
3.4.0-ci0278 | 608 | 10/3/2022 |
3.4.0-ci0274 | 652 | 10/3/2022 |
3.4.0-ci0270 | 648 | 10/3/2022 |
3.4.0-ci0265 | 634 | 10/3/2022 |
3.4.0-ci0259 | 587 | 10/3/2022 |
3.4.0-ci0252 | 743 | 5/31/2022 |
3.3.1-ci0247 | 3,085 | 5/3/2022 |
3.3.1-ci0245 | 648 | 5/3/2022 |
3.3.1-ci0242 | 2,776 | 4/25/2022 |
3.3.0 | 951,687 | 2/23/2022 |
3.3.0-ci0240 | 779 | 4/25/2022 |
3.3.0-ci0221 | 1,167 | 2/21/2022 |
3.2.0 | 347,904 | 2/4/2022 |
3.2.0-ci0219 | 670 | 2/21/2022 |
3.2.0-ci0217 | 617 | 2/21/2022 |
3.2.0-ci0214 | 681 | 2/21/2022 |
3.2.0-ci0207 | 14,566 | 12/14/2021 |
3.2.0-ci0205 | 3,725 | 12/14/2021 |
3.1.0 | 807,249 | 10/29/2021 |
3.0.0 | 1,053,102 | 6/28/2021 |
3.0.0-ci0203 | 728 | 12/6/2021 |
3.0.0-ci0198 | 772 | 10/25/2021 |
3.0.0-ci0195 | 770 | 10/25/2021 |
3.0.0-ci0192 | 720 | 9/18/2021 |
3.0.0-ci0183 | 718 | 9/1/2021 |
3.0.0-ci0177 | 793 | 6/25/2021 |
3.0.0-ci0170 | 3,163 | 5/12/2021 |
3.0.0-ci0168 | 3,205 | 4/22/2021 |
3.0.0-ci0164 | 763 | 4/20/2021 |
3.0.0-ci0155 | 2,611 | 4/13/2021 |
3.0.0-ci0146 | 52,911 | 1/22/2021 |
3.0.0-ci0145 | 1,582 | 1/16/2021 |
2.3.0 | 1,561,474 | 12/15/2020 |
2.3.0-ci0136 | 864 | 12/15/2020 |
2.2.0.124 | 150,938 | 12/8/2020 |
2.2.0.123-ci | 894 | 12/8/2020 |
2.2.0.120-ci | 37,599 | 11/24/2020 |
2.2.0.115-ci | 863 | 11/23/2020 |
2.2.0.113-ci | 832 | 11/23/2020 |
2.1.0.104-ci | 903 | 11/23/2020 |
2.1.0.99-ci | 886 | 11/23/2020 |
2.1.0 | 711,981 | 9/9/2020 |
2.1.0-ci0019 | 910 | 9/9/2020 |
2.0.1 | 646,080 | 5/24/2020 |
2.0.1-ci0017 | 1,013 | 5/24/2020 |
2.0.0 | 197,106 | 4/6/2020 |
2.0.0-ci0015 | 974 | 5/5/2020 |
2.0.0-ci0014 | 928 | 5/5/2020 |
2.0.0-ci0012 | 970 | 4/6/2020 |
2.0.0-ci0011 | 989 | 4/6/2020 |
1.2.0.131-pre | 395,486 | 2/5/2020 |
1.2.0.128-pre | 982 | 2/5/2020 |
1.2.0.127-pre | 1,006 | 2/5/2020 |
1.2.0.122-pre | 115,778 | 5/17/2019 |
1.2.0.120 | 2,024,869 | 12/6/2018 |
1.2.0.118-pre | 1,210 | 12/6/2018 |
1.2.0.116-pre | 1,235 | 12/6/2018 |
1.2.0.113-pre | 4,921 | 8/1/2018 |
1.2.0.111 | 181,430 | 7/25/2018 |
1.2.0.109-pre | 1,393 | 7/25/2018 |
1.1.0.107-pre | 1,352 | 7/25/2018 |
1.1.0.105-pre | 1,446 | 7/25/2018 |
1.1.0.104-pre | 1,550 | 7/25/2018 |
1.1.0.96 | 23,816 | 6/8/2018 |
1.1.0.94-pre | 1,553 | 6/8/2018 |
1.1.0.92-pre | 1,574 | 6/8/2018 |
1.1.0.85-pre | 1,687 | 6/7/2018 |
1.1.0.68-pre | 1,559 | 6/4/2018 |
1.0.60 | 139,085 | 5/31/2018 |
1.0.56-pre | 1,546 | 5/31/2018 |
1.0.52-pre | 1,600 | 5/31/2018 |
1.0.48-pre | 1,590 | 5/31/2018 |
1.0.44-pre | 1,581 | 5/31/2018 |
1.0.41-pre | 1,617 | 5/30/2018 |
1.0.38-pre | 1,616 | 5/30/2018 |
1.0.35-pre | 1,621 | 5/30/2018 |
1.0.32-pre | 1,600 | 5/30/2018 |
0.4.0 | 693,316 | 9/7/2015 |
0.3.2.1 | 125,215 | 12/27/2012 |
0.3.2 | 2,360 | 8/23/2012 |
0.3.1 | 2,040 | 8/23/2012 |
0.3.0 | 4,139 | 8/23/2012 |
0.2.2 | 3,269 | 7/18/2012 |
0.2.1 | 2,134 | 7/18/2012 |
0.2.0 | 2,071 | 7/18/2012 |
0.1.0 | 22,376 | 7/18/2012 |