Moq 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 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

Showing the top 20 packages that depend on Moq.

Packages Downloads
Hobud.Tools.Crypto
Package Description
747
Hobud.Tools.Crypto
Package Description
698
Hobud.Tools.Crypto
Package Description
322
Hobud.Tools.Crypto
Package Description
301
Hobud.Tools.Crypto
Package Description
40
Hobud.Tools.Crypto
Package Description
36
Hobud.Tools.Crypto
Package Description
29
Hobud.Tools.Crypto
Package Description
19
Hobud.Tools.Crypto
Package Description
14
Hobud.Tools.Crypto
Package Description
13
Hobud.Tools.Crypto
Package Description
11
Hobud.Tools.Crypto
Package Description
10

https://github.com/moq/moq/blob/main/changelog.md

.NET Framework 4.6.2

.NET Standard 2.0

.NET Standard 2.1

.NET 6.0

Version Downloads Last updated
4.20.72 1,453 09/19/2024
4.20.70 187 08/06/2024
4.20.69 15 02/20/2025
4.18.4 15 02/20/2025
4.18.3 15 02/20/2025
4.18.2 13 02/20/2025
4.18.1 15 02/20/2025
4.18.0 15 02/20/2025
4.17.2 12 02/20/2025
4.17.1 14 02/20/2025
4.16.1 15 02/20/2025
4.16.0 14 02/20/2025
4.15.2 15 02/20/2025
4.15.1 15 02/20/2025
4.14.7 15 02/20/2025
4.14.6 15 02/20/2025
4.14.5 15 02/20/2025
4.14.4 15 02/20/2025
4.14.3 15 02/20/2025
4.14.2 14 02/20/2025
4.14.1 14 02/20/2025
4.14.0 15 02/20/2025
4.13.1 15 02/20/2025
4.13.0 14 02/20/2025
4.12.0 14 02/20/2025
4.11.0 15 02/20/2025
4.11.0-rc2 15 02/20/2025
4.11.0-rc1 14 02/20/2025
4.10.1 341 08/06/2024
4.10.0 15 02/20/2025
4.9.0 14 02/20/2025
4.8.3 15 02/20/2025
4.8.2 15 02/20/2025
4.8.1 14 02/20/2025
4.8.0 15 02/20/2025
4.8.0-rc1 15 02/20/2025
4.7.145 15 02/20/2025
4.7.142 15 02/20/2025
4.7.137 14 02/20/2025
4.7.127 15 02/20/2025
4.7.99 15 02/20/2025
4.7.63 14 02/20/2025
4.7.58 15 02/20/2025
4.7.49 15 02/20/2025
4.7.46 15 02/20/2025
4.7.25 15 02/20/2025
4.7.12 15 02/20/2025
4.7.11 15 02/20/2025
4.7.10 15 02/20/2025
4.7.9 15 02/20/2025
4.7.8 15 02/20/2025
4.7.7 14 02/20/2025
4.7.1 15 02/20/2025
4.7.0 15 02/20/2025
4.6.62-alpha 15 02/20/2025
4.6.39-alpha 15 02/20/2025
4.6.38-alpha 15 02/20/2025
4.6.36-alpha 15 02/20/2025
4.6.25-alpha 14 02/20/2025
4.5.30 14 02/20/2025
4.5.29 15 02/20/2025
4.5.28 15 02/20/2025
4.5.23 14 02/20/2025
4.5.22 14 02/20/2025
4.5.21 15 02/20/2025
4.5.20 14 02/20/2025
4.5.19 14 02/20/2025
4.5.18 15 02/20/2025
4.5.16 14 02/20/2025
4.5.13 15 02/20/2025
4.5.10 13 02/20/2025
4.5.9 15 02/20/2025
4.5.9-alpha 14 02/20/2025
4.5.8 15 02/20/2025
4.5.7 15 02/20/2025
4.5.7-alpha 14 02/20/2025
4.5.6-alpha 15 02/20/2025
4.5.3 15 02/20/2025
4.5.0 15 02/20/2025
4.2.1510.2205 12 02/20/2025
4.2.1507.118 14 02/20/2025
4.2.1506.2515 15 02/20/2025
4.2.1506.2016 15 02/20/2025
4.2.1502.911 15 02/20/2025
4.2.1409.1722 15 02/20/2025
4.2.1408.717 14 02/20/2025
4.2.1408.619 15 02/20/2025
4.2.1402.2112 16 02/20/2025
4.2.1312.1622 16 02/20/2025
4.2.1312.1621 14 02/20/2025
4.2.1312.1615 14 02/20/2025
4.2.1312.1416 15 02/20/2025
4.2.1312.1323 14 02/20/2025
4.2.1312.1319 15 02/20/2025
4.1.1311.615 15 02/20/2025
4.1.1309.1617 15 02/20/2025
4.1.1309.919 15 02/20/2025
4.1.1309.801 14 02/20/2025
4.1.1309.800 14 02/20/2025
4.1.1308.2321 15 02/20/2025
4.1.1308.2316 15 02/20/2025
4.1.1308.2120 15 02/20/2025
4.0.10827 15 02/20/2025
3.1.416.3 13 02/20/2025