Moq 4.20.70

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Moq --version 4.20.70
NuGet\Install-Package Moq -Version 4.20.70
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.70" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Moq --version 4.20.70
#r "nuget: Moq, 4.20.70"
#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.70

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

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. Daniel Gnägi Ashley Medway Keith Pickford Thomas Bolon Kori Francis Toni Wenzel Giorgi Dalakishvili Mike James Dan Siegel Reuben Swartz Jacob Foshee alternate text is missing from this package README image Eric Johnson Norman Mackay Certify The Web Rich Lee alternate text is missing from this package README image Ix Technologies B.V. David JENNI Jonathan Oleg Kyrylchuk Mariusz Kogut Charley Wu Jakob Tikjøb Andersen Seann Alexander Tino Hager Mark Seemann Angelo Belchior Blauhaus Technology (Pty) Ltd Ken Bonny Simon Cropp agileworks-eu alternate text is missing from this package README image Zheyu Shen

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

Showing the top 5 NuGet packages that depend on Moq:

Package Downloads
AutoFixture.AutoMoq The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

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 The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

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
AvaloniaUI/Avalonia
Develop Desktop, Embedded, Mobile and WebAssembly apps with C# and XAML. The most popular .NET Foundation community project.
dotnet/roslyn
The Roslyn .NET compiler provides C# and Visual Basic languages with rich code analysis APIs.
BeyondDimension/SteamTools
🛠「Watt Toolkit」是一个开源跨平台的多功能 Steam 工具箱。
Version Downloads Last updated
4.20.70 7,217,591 11/28/2023
4.20.69 10,895,720 8/11/2023
4.18.4 52,128,300 12/30/2022
4.18.3 5,827,231 12/5/2022
4.18.2 33,580,179 8/2/2022
4.18.1 22,891,885 5/16/2022
4.18.0 1,022,166 5/11/2022
4.17.2 21,607,042 3/6/2022
4.17.1 2,036,316 2/26/2022
4.16.1 92,381,987 2/23/2021
4.16.0 16,610,673 1/16/2021
4.15.2 12,215,549 11/26/2020
4.15.1 6,971,080 11/10/2020
4.14.7 7,743,400 10/14/2020
4.14.6 3,489,121 9/30/2020
4.14.5 22,258,636 7/1/2020
4.14.4 1,832,450 6/24/2020
4.14.3 1,558,987 6/18/2020
4.14.2 1,019,431 6/16/2020
4.14.1 13,721,336 4/28/2020
4.14.0 1,235,744 4/24/2020
4.13.1 45,256,509 10/19/2019
4.13.0 10,587,165 8/31/2019
4.12.0 13,449,542 6/20/2019
4.11.0 4,619,470 5/27/2019
4.11.0-rc2 5,937 5/27/2019
4.11.0-rc1 201,126 4/19/2019
4.10.1 30,394,473 12/3/2018
4.10.0 13,644,870 9/8/2018
4.9.0 9,445,489 7/13/2018
4.8.3 5,451,369 6/9/2018
4.8.2 12,922,475 2/23/2018
4.8.1 5,227,403 1/8/2018
4.8.0 3,865,650 12/24/2017
4.8.0-rc1 51,466 12/8/2017
4.7.145 7,362,369 11/6/2017
4.7.142 2,670,689 10/10/2017
4.7.137 1,565,450 10/3/2017
4.7.127 887,906 9/25/2017
4.7.99 6,414,799 7/17/2017
4.7.63 1,729,306 6/21/2017
4.7.58 74,920 6/20/2017
4.7.49 382,430 6/18/2017
4.7.46 78,928 6/18/2017
4.7.25 1,365,731 6/2/2017
4.7.12 291,381 5/30/2017
4.7.11 6,766 5/30/2017
4.7.10 1,206,381 5/6/2017
4.7.9 428,332 4/29/2017
4.7.8 1,868,527 3/26/2017
4.7.7 28,281 3/25/2017
4.7.1 1,611,873 2/28/2017
4.7.0 12,050,278 2/22/2017
4.6.62-alpha 6,548 2/21/2017
4.6.39-alpha 13,854 2/18/2017
4.6.38-alpha 757,055 8/20/2016
4.6.36-alpha 205,458 7/20/2016
4.6.25-alpha 108,541 6/6/2016
4.5.30 3,971,831 1/9/2017
4.5.29 1,155,255 12/10/2016
4.5.28 1,978,690 11/10/2016
4.5.23 1,201,897 10/11/2016
4.5.22 812,568 9/20/2016
4.5.21 1,566,725 8/12/2016
4.5.20 10,929 8/12/2016
4.5.19 95,339 8/10/2016
4.5.18 7,801 8/10/2016
4.5.16 827,321 7/18/2016
4.5.13 195,161 7/11/2016
4.5.10 760,121 6/21/2016
4.5.9 703,329 6/9/2016
4.5.9-alpha 11,109 5/22/2016
4.5.8 699,473 5/26/2016
4.5.7 9,897 5/26/2016
4.5.7-alpha 4,927 5/22/2016
4.5.6-alpha 5,163 5/22/2016
4.5.3 995,569 5/25/2016
4.5.0 282,844 5/24/2016
4.2.1510.2205 8,048,182 10/22/2015
4.2.1507.118 2,885,126 7/1/2015
4.2.1506.2515 154,857 6/25/2015
4.2.1506.2016 69,003 6/20/2015
4.2.1502.911 3,168,924 2/9/2015
4.2.1409.1722 2,339,029 9/17/2014
4.2.1408.717 931,510 8/7/2014
4.2.1408.619 27,885 8/6/2014
4.2.1402.2112 2,399,032 2/21/2014
4.2.1312.1622 956,221 12/17/2013
4.2.1312.1621 6,945 12/16/2013
4.2.1312.1615 7,571 12/16/2013
4.2.1312.1416 21,211 12/14/2013
4.2.1312.1323 8,652 12/14/2013
4.2.1312.1319 51,664 12/13/2013
4.1.1311.615 378,520 11/18/2013
4.1.1309.1617 652,224 9/16/2013
4.1.1309.919 295,262 9/9/2013
4.1.1309.801 14,690 9/8/2013
4.1.1309.800 7,190 9/8/2013
4.1.1308.2321 888,768 8/23/2013
4.1.1308.2316 9,755 8/23/2013
4.1.1308.2120 1,570,290 8/21/2013
4.0.10827 5,124,554 2/9/2011
3.1.416.3 658,694 2/9/2011