SparkyTestHelpers.Moq.Core
1.4.0
See the version list below for details.
Install-Package SparkyTestHelpers.Moq.Core -Version 1.4.0
dotnet add package SparkyTestHelpers.Moq.Core --version 1.4.0
<PackageReference Include="SparkyTestHelpers.Moq.Core" Version="1.4.0" />
paket add SparkyTestHelpers.Moq.Core --version 1.4.0
#r "nuget: SparkyTestHelpers.Moq.Core, 1.4.0"
// Install SparkyTestHelpers.Moq.Core as a Cake Addin
#addin nuget:?package=SparkyTestHelpers.Moq.Core&version=1.4.0
// Install SparkyTestHelpers.Moq.Core as a Cake Tool
#tool nuget:?package=SparkyTestHelpers.Moq.Core&version=1.4.0
Moq syntax helpers
see also:
- SparkyTestHelpers.Moq
- SparkyTestHelpers.Moq.Fluent
- the rest of the "Sparky suite" of .NET utilities and test helpers
This package provides core extension methods intended for use with SparkyTestHelpers.Moq and SparkyTestHelpers.Moq.Fluent, but it can be used on its own...
Moq, “the most popular and friendly mocking framework for .NET” is great, but some of the syntax is a bit unwieldy.
This NuGet package provides extension methods that allow you to use Moq with “wieldier” (Is that a word?) syntax:
“Any” - Syntax alternative to “It.IsAny<T>”
_mock.Setup(x => x.DoSomething(
It.IsAny<string>(), It.IsAny<int>(), It.IsAny<IEnumerable<int>>())
.Returns(true);
...can be simplified to:
using SparkyTestHelpers.Moq;
. . .
_mock.Setup(x => x.DoSomething(
Any.String, Any.Int, Any.IEnumerable<int>())
.Returns(true);
"Any" members:
- Any.Action
- Any.Action<T>
- Any.Action<T1, T2>
- Any.Action<T1, T2, T3>
- Any.Array<T>
- Any.Boolean
- Any.Dictionary<TKey, TValue>
- Any.DateTime
- Any.Decimal
- Any.Double
- Any.Func<T>
- Any.Func<T1, T2>
- Any.Func<T1, T2, T3>
- Any.Guid
- Any.IEnumerable<T>
- Any.InstanceOf<T> (Any.One<T> is a "synonym" for Any.InstanceOf<T>)
- Any.IList<T>
- Any.Int
- Any.IQueryable<T?
- Any.KeyValuePair<TKey, TValue>
- Any.Lazy<T>
- Any.List<T>
- Any.Long
- Any.Nullable<T>
- Any.Object
- Any.Short
- Any.Single
- Any.String
- Any.TimeSpan
- Any.Tuple<T1, T2>
- Any.Type
- Any.UInt
- Any.ULong
- Any.UShort
mock.Where extension method
...provides an alternate syntax for "It.Is":
using SparkyTestHelpers.Moq;
. . .
// sad:
_mock.Setup(x => x.Foo(It.Is<int>(i => i % 2 == 0))).Returns(true);
// rad!:
_mock.Setup(x => x.Foo(Any.Int.Where(i => i % 2 == 0))).Returns(true);
mock.Expression extension method
...makes it easy to create a reusable expression so you don't duplicate code in ".Setup" and ".Verify" calls. This test:
// Arrange:
_mock.Setup(x => x.Foo(
Any.String, Any.Int, Any.InstanceOf<Bar>())
).Returns(true);
// Act:
subjectUnderTest.Fooify("yo", 5, myBar);
//Assert:
_mock.VerifyOneCallTo(x => x.Foo(
Any.String, Any.Int, Any.InstanceOf<Bar>()));
...where you have to code the same “x ⇒ x.Foo( Any.String, Any.Int, Any.InstanceOf<Bar>()” expression for both the .Setup and .Verify calls - can be simplified to:
using SparkyTestHelpers.Moq;
. . .
// Arrange:
var fooExp = _mock.Expression(x =>
x.Foo(Any.String, Any.Int, Any.InstanceOf<Bar>()));
_mock.Setup(fooExp).Returns(true);
// Act:
subjectUnderTest.Fooify("yo", 5, myBar);
// Assert:
_mock.VerifyOneCallTo(fooExp);
...so you only have to code the expression once, reducing finger fatigue and the possibility of the Setup and Verify expressions not matching because of a typo!
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 | netcoreapp1.0 netcoreapp1.1 netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard1.3 netstandard1.4 netstandard1.5 netstandard1.6 netstandard2.0 netstandard2.1 |
.NET Framework | net46 net461 net462 net463 net47 net471 net472 net48 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen30 tizen40 tizen60 |
Universal Windows Platform | uap uap10.0 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 1.3
- Moq (>= 4.10.0)
- NETStandard.Library (>= 1.6.1)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on SparkyTestHelpers.Moq.Core:
Package | Downloads |
---|---|
SparkyTestHelpers.Moq
Unit test helpers providing alternate syntax for testing with Moq |
|
SparkyTestHelpers.Moq.Fluent
Unit test helpers providing "fluent" assertions for testing with Moq |
GitHub repositories
This package is not used by any popular GitHub repositories.