Moq 4.20.72

Prefix Reserved
dotnet add package Moq --version 4.20.72                
NuGet\Install-Package Moq -Version 4.20.72                
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" Version="4.20.72" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Moq --version 4.20.72                
#r "nuget: Moq, 4.20.72"                
#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 as a Cake Addin
#addin nuget:?package=Moq&version=4.20.72

// Install Moq as a Cake Tool
#tool nuget:?package=Moq&version=4.20.72                

The most popular and friendly mocking library for .NET

  var mock = new Mock<ILoveThisLibrary>();

  // WOW! No record/replay weirdness?! :)
  mock.Setup(library => library.DownloadExists("2.0.0.0"))
      .Returns(true);

  // Use the Object property on the mock to get a reference to the object
  // implementing ILoveThisLibrary, and then exercise it by calling
  // methods on it
  ILoveThisLibrary lovable = mock.Object;
  bool download = lovable.DownloadExists("2.0.0.0");

  // Verify that the given method was indeed called with the expected value at most once
  mock.Verify(library => library.DownloadExists("2.0.0.0"), Times.AtMostOnce());

Moq also is the first and only library so far to provide Linq to Mocks, so that the same behavior above can be achieved much more succinctly:

  ILoveThisLibrary lovable = Mock.Of<ILoveThisLibrary>(l =>
    l.DownloadExists("2.0.0.0") == true);

  // Exercise the instance returned by Mock.Of by calling methods on it...
  bool download = lovable.DownloadExists("2.0.0.0");

  // Simply assert the returned state:
  Assert.True(download);
  
  // If you want to go beyond state testing and want to 
  // verify the mock interaction instead...
  Mock.Get(lovable).Verify(library => library.DownloadExists("2.0.0.0"));

You can think of Linq to Mocks as "from the universe of mocks, give me one whose behavior matches this expression".

Check out the Quickstart for more examples!

Sponsors

Clarius Org Kirill Osenkov MFB Technologies, Inc. Stephen Shaw Torutek DRIVE.NET, Inc. Ashley Medway Keith Pickford Thomas Bolon Kori Francis Toni Wenzel Giorgi Dalakishvili Uno Platform Dan Siegel Reuben Swartz Jacob Foshee alternate text is missing from this package README image Eric Johnson Ix Technologies B.V. David JENNI Jonathan Oleg Kyrylchuk Charley Wu Jakob Tikjøb Andersen Seann Alexander Tino Hager Mark Seemann Ken Bonny Simon Cropp agileworks-eu sorahex Zheyu Shen Vezel ChilliCream 4OTC Vincent Limo Brooke Hamilton

Sponsor this project  

Learn more about GitHub Sponsors

Product 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 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (830)

Showing the top 5 NuGet packages that depend on Moq:

Package Downloads
AutoFixture.AutoMoq

This extension turns AutoFixture into an Auto-Mocking Container. The mock instances are created by Moq. To use it, add the AutoMoqCustomization to your Fixture instance. Read more at http://blog.ploeh.dk/2010/08/19/AutoFixtureAsAnAutomockingContainer.aspx

Moq.AutoMock

An auto-mocking container that generates mocks using Moq

MockQueryable.Moq

Extension for mocking Entity Framework Core operations such ToListAsync, FirstOrDefaultAsync etc. When writing tests for your application it is often desirable to avoid hitting the database. The extension allows you to achieve this by creating a context – with behavior defined by your tests – that makes use of in-memory data.

Autofac.Extras.Moq

Autofac extension for automocking and creation of mock objects in Moq.

Moq.EntityFrameworkCore

Library that provides methods that will help you with mocking Entity Framework Core.

GitHub repositories (1.2K)

Showing the top 5 popular GitHub repositories that depend on Moq:

Repository Stars
microsoft/PowerToys
Windows system utilities to maximize productivity
jellyfin/jellyfin
The Free Software Media System
DevToys-app/DevToys
A Swiss Army knife for developers.
AvaloniaUI/Avalonia
Develop Desktop, Embedded, Mobile and WebAssembly apps with C# and XAML. The most popular .NET UI client technology
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
Version Downloads Last updated
4.20.72 455,527 9/7/2024
4.20.70 35,702,505 11/28/2023
4.20.69 16,280,995 8/11/2023
4.18.4 67,907,018 12/30/2022
4.18.3 6,926,305 12/5/2022
4.18.2 39,100,836 8/2/2022
4.18.1 26,019,691 5/16/2022
4.18.0 1,225,464 5/11/2022
4.17.2 24,473,327 3/6/2022
4.17.1 2,260,068 2/26/2022
4.16.1 101,488,757 2/23/2021
4.16.0 17,655,066 1/16/2021
4.15.2 13,080,720 11/26/2020
4.15.1 7,525,920 11/10/2020
4.14.7 8,214,736 10/14/2020
4.14.6 3,677,113 9/30/2020
4.14.5 23,431,069 7/1/2020
4.14.4 1,954,656 6/24/2020
4.14.3 1,651,624 6/18/2020
4.14.2 1,061,454 6/16/2020
4.14.1 14,760,759 4/28/2020
4.14.0 1,318,997 4/24/2020
4.13.1 47,513,263 10/19/2019
4.13.0 11,185,827 8/31/2019
4.12.0 13,991,701 6/20/2019
4.11.0 4,845,418 5/27/2019
4.11.0-rc2 6,295 5/27/2019
4.11.0-rc1 206,867 4/19/2019
4.10.1 31,547,487 12/3/2018
4.10.0 14,118,893 9/8/2018
4.9.0 9,944,161 7/13/2018
4.8.3 5,710,292 6/9/2018
4.8.2 13,489,064 2/23/2018
4.8.1 5,456,729 1/8/2018
4.8.0 4,606,413 12/24/2017
4.8.0-rc1 53,398 12/8/2017
4.7.145 7,638,557 11/6/2017
4.7.142 2,730,385 10/10/2017
4.7.137 1,767,097 10/3/2017
4.7.127 935,071 9/25/2017
4.7.99 6,673,581 7/17/2017
4.7.63 1,773,175 6/21/2017
4.7.58 75,927 6/20/2017
4.7.49 398,719 6/18/2017
4.7.46 83,157 6/18/2017
4.7.25 1,401,758 6/2/2017
4.7.12 309,245 5/30/2017
4.7.11 7,346 5/30/2017
4.7.10 1,250,333 5/6/2017
4.7.9 440,863 4/29/2017
4.7.8 1,946,021 3/26/2017
4.7.7 28,797 3/25/2017
4.7.1 1,669,305 2/28/2017
4.7.0 14,682,438 2/22/2017
4.6.62-alpha 6,873 2/21/2017
4.6.39-alpha 14,174 2/18/2017
4.6.38-alpha 767,511 8/20/2016
4.6.36-alpha 206,057 7/20/2016
4.6.25-alpha 109,220 6/6/2016
4.5.30 4,170,770 1/9/2017
4.5.29 1,206,200 12/10/2016
4.5.28 2,078,847 11/10/2016
4.5.23 1,250,267 10/11/2016
4.5.22 850,159 9/20/2016
4.5.21 1,609,560 8/12/2016
4.5.20 11,297 8/12/2016
4.5.19 98,373 8/10/2016
4.5.18 8,135 8/10/2016
4.5.16 852,400 7/18/2016
4.5.13 201,811 7/11/2016
4.5.10 817,646 6/21/2016
4.5.9 725,508 6/9/2016
4.5.9-alpha 11,515 5/22/2016
4.5.8 712,021 5/26/2016
4.5.7 10,520 5/26/2016
4.5.7-alpha 5,234 5/22/2016
4.5.6-alpha 5,471 5/22/2016
4.5.3 1,060,450 5/25/2016
4.5.0 303,063 5/24/2016
4.2.1510.2205 8,435,175 10/22/2015
4.2.1507.118 3,031,825 7/1/2015
4.2.1506.2515 161,914 6/25/2015
4.2.1506.2016 72,040 6/20/2015
4.2.1502.911 3,330,400 2/9/2015
4.2.1409.1722 2,466,242 9/17/2014
4.2.1408.717 963,838 8/7/2014
4.2.1408.619 28,863 8/6/2014
4.2.1402.2112 2,496,400 2/21/2014
4.2.1312.1622 995,314 12/17/2013
4.2.1312.1621 7,313 12/16/2013
4.2.1312.1615 7,967 12/16/2013
4.2.1312.1416 21,689 12/14/2013
4.2.1312.1323 9,982 12/14/2013
4.2.1312.1319 53,892 12/13/2013
4.1.1311.615 386,858 11/18/2013
4.1.1309.1617 687,321 9/16/2013
4.1.1309.919 302,866 9/9/2013
4.1.1309.801 15,115 9/8/2013
4.1.1309.800 7,510 9/8/2013
4.1.1308.2321 905,464 8/23/2013
4.1.1308.2316 10,151 8/23/2013
4.1.1308.2120 1,850,323 8/21/2013
4.0.10827 5,420,667 2/9/2011
3.1.416.3 764,282 2/9/2011