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 (839)

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 2,715,478 9/7/2024
4.20.70 40,637,905 11/28/2023
4.20.69 17,008,057 8/11/2023
4.18.4 70,441,872 12/30/2022
4.18.3 7,092,215 12/5/2022
4.18.2 39,955,413 8/2/2022
4.18.1 26,531,411 5/16/2022
4.18.0 1,258,750 5/11/2022
4.17.2 24,874,131 3/6/2022
4.17.1 2,291,103 2/26/2022
4.16.1 103,019,681 2/23/2021
4.16.0 17,815,121 1/16/2021
4.15.2 13,226,934 11/26/2020
4.15.1 7,614,140 11/10/2020
4.14.7 8,296,536 10/14/2020
4.14.6 3,708,426 9/30/2020
4.14.5 23,625,102 7/1/2020
4.14.4 1,973,103 6/24/2020
4.14.3 1,667,311 6/18/2020
4.14.2 1,069,430 6/16/2020
4.14.1 14,952,421 4/28/2020
4.14.0 1,334,871 4/24/2020
4.13.1 47,885,786 10/19/2019
4.13.0 11,296,380 8/31/2019
4.12.0 14,089,732 6/20/2019
4.11.0 4,879,959 5/27/2019
4.11.0-rc2 6,413 5/27/2019
4.11.0-rc1 207,853 4/19/2019
4.10.1 31,744,155 12/3/2018
4.10.0 14,205,434 9/8/2018
4.9.0 10,040,520 7/13/2018
4.8.3 5,758,664 6/9/2018
4.8.2 13,598,620 2/23/2018
4.8.1 5,497,172 1/8/2018
4.8.0 4,773,493 12/24/2017
4.8.0-rc1 53,826 12/8/2017
4.7.145 7,689,326 11/6/2017
4.7.142 2,743,104 10/10/2017
4.7.137 1,789,833 10/3/2017
4.7.127 943,399 9/25/2017
4.7.99 6,737,201 7/17/2017
4.7.63 1,780,718 6/21/2017
4.7.58 76,142 6/20/2017
4.7.49 404,088 6/18/2017
4.7.46 83,862 6/18/2017
4.7.25 1,406,761 6/2/2017
4.7.12 312,297 5/30/2017
4.7.11 7,501 5/30/2017
4.7.10 1,257,905 5/6/2017
4.7.9 443,211 4/29/2017
4.7.8 1,961,072 3/26/2017
4.7.7 28,939 3/25/2017
4.7.1 1,680,250 2/28/2017
4.7.0 15,242,922 2/22/2017
4.6.62-alpha 7,045 2/21/2017
4.6.39-alpha 14,287 2/18/2017
4.6.38-alpha 769,039 8/20/2016
4.6.36-alpha 206,226 7/20/2016
4.6.25-alpha 109,527 6/6/2016
4.5.30 4,206,932 1/9/2017
4.5.29 1,216,623 12/10/2016
4.5.28 2,096,338 11/10/2016
4.5.23 1,258,370 10/11/2016
4.5.22 857,332 9/20/2016
4.5.21 1,617,191 8/12/2016
4.5.20 11,419 8/12/2016
4.5.19 99,002 8/10/2016
4.5.18 8,255 8/10/2016
4.5.16 856,843 7/18/2016
4.5.13 203,006 7/11/2016
4.5.10 827,674 6/21/2016
4.5.9 728,827 6/9/2016
4.5.9-alpha 11,644 5/22/2016
4.5.8 714,524 5/26/2016
4.5.7 10,684 5/26/2016
4.5.7-alpha 5,343 5/22/2016
4.5.6-alpha 5,589 5/22/2016
4.5.3 1,074,450 5/25/2016
4.5.0 307,039 5/24/2016
4.2.1510.2205 8,507,644 10/22/2015
4.2.1507.118 3,055,726 7/1/2015
4.2.1506.2515 163,237 6/25/2015
4.2.1506.2016 72,877 6/20/2015
4.2.1502.911 3,357,782 2/9/2015
4.2.1409.1722 2,491,439 9/17/2014
4.2.1408.717 970,739 8/7/2014
4.2.1408.619 29,092 8/6/2014
4.2.1402.2112 2,514,676 2/21/2014
4.2.1312.1622 1,001,450 12/17/2013
4.2.1312.1621 7,427 12/16/2013
4.2.1312.1615 8,171 12/16/2013
4.2.1312.1416 21,871 12/14/2013
4.2.1312.1323 10,435 12/14/2013
4.2.1312.1319 54,836 12/13/2013
4.1.1311.615 388,891 11/18/2013
4.1.1309.1617 696,669 9/16/2013
4.1.1309.919 304,655 9/9/2013
4.1.1309.801 15,232 9/8/2013
4.1.1309.800 7,633 9/8/2013
4.1.1308.2321 908,048 8/23/2013
4.1.1308.2316 10,279 8/23/2013
4.1.1308.2120 1,914,723 8/21/2013
4.0.10827 5,475,266 2/9/2011
3.1.416.3 780,987 2/9/2011