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.
<PackageVersion Include="Moq" Version="4.20.72" />
                    
Directory.Packages.props
<PackageReference Include="Moq" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version 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.
#addin nuget:?package=Moq&version=4.20.72
                    
Install Moq as a Cake Addin
#tool nuget:?package=Moq&version=4.20.72
                    
Install Moq as a Cake Tool

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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.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 (866)

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 20 popular GitHub repositories that depend on Moq:

Repository Stars
microsoft/PowerToys
Windows system utilities to maximize productivity
jellyfin/jellyfin
The Free Software Media System - Server Backend & API
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
BeyondDimension/SteamTools
🛠「Watt Toolkit」是一个开源跨平台的多功能 Steam 工具箱。
dotnet/roslyn
The Roslyn .NET compiler provides C# and Visual Basic languages with rich code analysis APIs.
jasontaylordev/CleanArchitecture
Clean Architecture Solution Template for ASP.NET Core
ppy/osu
rhythm is just a *click* away!
dotnet/runtime
.NET is a cross-platform runtime for cloud, mobile, desktop, and IoT apps.
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
Sonarr/Sonarr
Smart PVR for newsgroup and bittorrent users.
Radarr/Radarr
Movie organizer/manager for usenet and torrent users.
JamesNK/Newtonsoft.Json
Json.NET is a popular high-performance JSON framework for .NET
QuantConnect/Lean
Lean Algorithmic Trading Engine by QuantConnect (Python, C#)
chocolatey/choco
Chocolatey - the package manager for Windows
JosefNemec/Playnite
Video game library manager with support for wide range of 3rd party libraries and game emulation support, providing one unified interface for your games.
MathewSachin/Captura
Capture Screen, Audio, Cursor, Mouse Clicks and Keystrokes
cefsharp/CefSharp
.NET (WPF and Windows Forms) bindings for the Chromium Embedded Framework
gui-cs/Terminal.Gui
Cross Platform Terminal UI toolkit for .NET
Version Downloads Last updated
4.20.72 29,447,836 7 months ago
4.20.70 61,370,689 11/28/2023
4.20.69 20,458,424 8/11/2023
4.18.4 83,485,899 12/30/2022
4.18.3 7,978,108 12/5/2022
4.18.2 43,788,699 8/2/2022
4.18.1 28,810,528 5/16/2022
4.18.0 1,436,936 5/11/2022
4.17.2 26,751,264 3/6/2022
4.17.1 2,443,480 2/26/2022
4.16.1 110,452,202 2/23/2021
4.16.0 18,702,871 1/16/2021
4.15.2 13,915,429 11/26/2020
4.15.1 8,059,206 11/10/2020
4.14.7 8,680,305 10/14/2020
4.14.6 3,889,437 9/30/2020
4.14.5 24,516,269 7/1/2020
4.14.4 2,055,982 6/24/2020
4.14.3 1,751,902 6/18/2020
4.14.2 1,104,515 6/16/2020
4.14.1 15,983,178 4/28/2020
4.14.0 1,416,198 4/24/2020
4.13.1 49,792,877 10/19/2019
4.13.0 11,898,804 8/31/2019
4.12.0 14,593,762 6/20/2019
4.11.0 5,065,254 5/27/2019
4.11.0-rc2 7,013 5/27/2019
4.11.0-rc1 213,798 4/19/2019
4.10.1 32,740,430 12/3/2018
4.10.0 14,592,840 9/8/2018
4.9.0 10,541,571 7/13/2018
4.8.3 6,015,952 6/9/2018
4.8.2 14,211,961 2/23/2018
4.8.1 5,705,362 1/8/2018
4.8.0 5,990,121 12/24/2017
4.8.0-rc1 55,870 12/8/2017
4.7.145 7,918,658 11/6/2017
4.7.142 2,803,416 10/10/2017
4.7.137 1,940,982 10/3/2017
4.7.127 990,277 9/25/2017
4.7.99 6,971,902 7/17/2017
4.7.63 1,813,199 6/21/2017
4.7.58 78,172 6/20/2017
4.7.49 473,020 6/18/2017
4.7.46 87,624 6/18/2017
4.7.25 1,428,350 6/2/2017
4.7.12 329,296 5/30/2017
4.7.11 8,891 5/30/2017
4.7.10 1,294,269 5/6/2017
4.7.9 453,602 4/29/2017
4.7.8 2,042,091 3/26/2017
4.7.7 30,336 3/25/2017
4.7.1 1,731,334 2/28/2017
4.7.0 19,149,471 2/22/2017
4.6.62-alpha 7,751 2/21/2017
4.6.39-alpha 14,949 2/18/2017
4.6.38-alpha 776,167 8/20/2016
4.6.36-alpha 207,080 7/20/2016
4.6.25-alpha 110,448 6/6/2016
4.5.30 4,396,738 1/9/2017
4.5.29 1,264,644 12/10/2016
4.5.28 2,203,771 11/10/2016
4.5.23 1,296,683 10/11/2016
4.5.22 891,472 9/20/2016
4.5.21 1,655,573 8/12/2016
4.5.20 12,655 8/12/2016
4.5.19 101,759 8/10/2016
4.5.18 9,454 8/10/2016
4.5.16 885,408 7/18/2016
4.5.13 211,221 7/11/2016
4.5.10 873,449 6/21/2016
4.5.9 743,545 6/9/2016
4.5.9-alpha 12,331 5/22/2016
4.5.8 728,241 5/26/2016
4.5.7 12,042 5/26/2016
4.5.7-alpha 5,987 5/22/2016
4.5.6-alpha 6,227 5/22/2016
4.5.3 1,152,351 5/25/2016
4.5.0 330,142 5/24/2016
4.2.1510.2205 8,849,256 10/22/2015
4.2.1507.118 3,166,469 7/1/2015
4.2.1506.2515 170,266 6/25/2015
4.2.1506.2016 77,380 6/20/2015
4.2.1502.911 3,496,715 2/9/2015
4.2.1409.1722 2,644,025 9/17/2014
4.2.1408.717 1,004,711 8/7/2014
4.2.1408.619 30,420 8/6/2014
4.2.1402.2112 2,602,883 2/21/2014
4.2.1312.1622 1,039,772 12/17/2013
4.2.1312.1621 8,407 12/16/2013
4.2.1312.1615 9,509 12/16/2013
4.2.1312.1416 22,923 12/14/2013
4.2.1312.1323 12,682 12/14/2013
4.2.1312.1319 59,330 12/13/2013
4.1.1311.615 398,862 11/18/2013
4.1.1309.1617 747,219 9/16/2013
4.1.1309.919 314,956 9/9/2013
4.1.1309.801 16,848 9/8/2013
4.1.1309.800 8,404 9/8/2013
4.1.1308.2321 923,656 8/23/2013
4.1.1308.2316 11,050 8/23/2013
4.1.1308.2120 2,405,098 8/21/2013
4.0.10827 5,753,172 2/9/2011
3.1.416.3 906,657 2/9/2011