TransparentMoq 4.20.70.1
dotnet add package TransparentMoq --version 4.20.70.1
NuGet\Install-Package TransparentMoq -Version 4.20.70.1
<PackageReference Include="TransparentMoq" Version="4.20.70.1" />
paket add TransparentMoq --version 4.20.70.1
#r "nuget: TransparentMoq, 4.20.70.1"
// Install TransparentMoq as a Cake Addin #addin nuget:?package=TransparentMoq&version=4.20.70.1 // Install TransparentMoq as a Cake Tool #tool nuget:?package=TransparentMoq&version=4.20.70.1
TransparentMoq
With inspiration taken from mocking frameworks like NSubstitute, FakeItEasy and JustMock this package adds some of the syntactic advantages of these frameworks to Moq.
TransparentMoq allows to use Moq without having to store mocks in Mock<T> variables, instead a T variable can be used. This also removes the need to pass mocks with ".Object" everywhere as they can be passed directly.
The library provides extension methods for most (if not all) of Moq's methods, so they can be called directly on the T variable. Examples: Instead of
private Mock<IFileSystem> fileSystem = new Mock<IFileSystem>();
write
private IFileSystem fileSystem = New.Mock<IFileSystem>();
Instead of
MethodThatTakesFileSystem(fileSystem.Object);
write
MethodThatTakesFileSystem(fileSystem);
To arrange a mock everything remains the same:
fileSystem.Setup(x => x.Exists(It.IsAny<string>())).Returns(true);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. 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 is compatible. 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 is compatible. 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 is compatible. |
.NET Framework | net461 was computed. net462 is compatible. 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. |
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
4.20.70.1 | 107 | 3/12/2024 |
4.20.70 | 61 | 3/12/2024 |
4.18.2 | 62 | 3/12/2024 |
4.18.1.2-u20230320-164816-ci | 98 | 3/20/2023 |
4.18.1.1 | 833 | 11/28/2022 |
4.18.1.1-u20221128-223300-ci | 85 | 11/28/2022 |
4.18.1.1-u20221128-204809-ci | 87 | 11/28/2022 |
4.18.1 | 155 | 11/28/2022 |
4.16.2.2 | 101 | 11/28/2022 |
4.16.2.1 | 437 | 8/21/2022 |
4.16.1.13 | 13,549 | 6/23/2022 |
4.16.1.12 | 214 | 6/19/2022 |
4.16.1.11 | 111 | 6/19/2022 |
4.16.1.10 | 339 | 6/19/2021 |
4.16.1.9 | 1,225 | 5/3/2021 |
4.16.1.8 | 1,224 | 4/24/2021 |
4.16.1.7 | 1,215 | 4/7/2021 |
4.16.1.6 | 1,165 | 4/7/2021 |
4.16.1.5 | 1,192 | 4/6/2021 |
4.16.1.4 | 1,191 | 3/29/2021 |
4.16.1.3 | 1,156 | 3/29/2021 |
4.16.1.2 | 1,318 | 3/5/2021 |
4.16.1.1 | 1,307 | 3/4/2021 |
4.16.1 | 1,356 | 2/1/2021 |
4.16.0 | 1,254 | 1/24/2021 |
4.15.2 | 1,448 | 12/6/2020 |
1.2.1 | 1,387 | 10/29/2020 |
1.2.0 | 1,305 | 10/28/2020 |
1.1.0 | 1,345 | 10/28/2020 |
1.0.0 | 1,501 | 9/27/2020 |
4.20.70 - https://github.com/moq/moq4/releases/tag/v4.20.70
4.18.2 - https://github.com/moq/moq4/releases/tag/v4.18.2
4.16.0 - https://github.com/moq/moq4/releases/tag/v4.16.0
4.15.2 - https://github.com/moq/moq4/releases/tag/v4.15.2
1.0 - Initial release