AutoMoqSlim.Microsoft
1.0.1
Install-Package AutoMoqSlim.Microsoft -Version 1.0.1
dotnet add package AutoMoqSlim.Microsoft --version 1.0.1
<PackageReference Include="AutoMoqSlim.Microsoft" Version="1.0.1" />
paket add AutoMoqSlim.Microsoft --version 1.0.1
#r "nuget: AutoMoqSlim.Microsoft, 1.0.1"
// Install AutoMoqSlim.Microsoft as a Cake Addin
#addin nuget:?package=AutoMoqSlim.Microsoft&version=1.0.1
// Install AutoMoqSlim.Microsoft as a Cake Tool
#tool nuget:?package=AutoMoqSlim.Microsoft&version=1.0.1
AutoMoqSlim
AutoMoqSlim is a simple "auto-mocking" container inspired by AutoMoq with less dependencies and compatible with .NET Core
What is it for?
Suppose you have a class with multiple dependencies
public ClassForTesting(IMockMe mockMe, INoNeedToMock noNeedToMock, ILogger logger)
But for your test you need to mock only one of them. In any case, in order to create an instance of the target class you need to create stubs for all of its dependencies manually
var mock = new Mock<IMockMe>();
mock.Setup(/*setup*/)
// continue to setup your mock
var stub1 = new Mock<INoNeedToMock>();
var stub2 = new Mock<ILogger>();
var target = new ClassForTesting(mock.Object, stub1.Object, stub2.Object);
And the number of unused dependencies may be much higher This package makes it a little bit easier. In this case it would be something like
var autoMoqer = new AutoMoqSlim();
autoMoqer.GetMock<IMockMe>()
.Setup(/*setup*/)
// continue to setup your mock
var target = autoMoqer.Create<ClassForTesting>();
Installation
via Package Manager
PM> Install-Package AutoMoqSlim
via dotnet CLI
> dotnet add package AutoMoqSlim
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 2.0
- AutoMoqSlim (>= 1.0.2)
- Microsoft.Extensions.DependencyInjection (>= 2.0.0 && < 6.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.