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

No packages depend on Moq.

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 8 09/07/2024
4.20.70 13 11/30/2023
4.20.69 14 09/08/2023
4.18.4 37 05/11/2023
4.18.3 32 05/21/2023
4.18.2 1,046 08/24/2022
4.18.1 17 06/27/2022
4.18.0 24 08/22/2022
4.17.2 57 09/08/2022
4.17.1 58 09/10/2022
4.16.1 2,523 06/27/2022
4.16.0 23 09/02/2022
4.15.2 59 09/09/2022
4.15.1 89 08/23/2022
4.14.7 22 09/08/2022
4.14.6 24 09/07/2022
4.14.5 72 09/08/2022
4.14.4 40 09/09/2022
4.14.3 17 09/10/2022
4.14.2 74 08/23/2022
4.14.1 39 09/08/2022
4.14.0 47 09/08/2022
4.13.1 75 09/08/2022
4.13.0 65 09/08/2022
4.12.0 64 09/08/2022
4.11.0 39 09/03/2022
4.11.0-rc2 53 09/07/2022
4.11.0-rc1 13 09/04/2022
4.10.1 57 09/08/2022
4.10.0 75 09/09/2022
4.9.0 36 09/08/2022
4.8.3 74 09/04/2022
4.8.2 27 09/09/2022
4.8.1 50 08/25/2022
4.8.0 24 09/09/2022
4.8.0-rc1 48 09/07/2022
4.7.145 27 09/02/2022
4.7.142 32 09/07/2022
4.7.137 32 09/07/2022
4.7.127 49 09/09/2022
4.7.99 48 08/21/2022
4.7.63 49 09/07/2022
4.7.58 16 09/07/2022
4.7.49 56 09/09/2022
4.7.46 72 09/08/2022
4.7.25 73 09/08/2022
4.7.12 79 09/07/2022
4.7.11 77 09/08/2022
4.7.10 35 09/07/2022
4.7.9 14 09/08/2022
4.7.8 50 08/22/2022
4.7.7 32 09/09/2022
4.7.1 52 09/07/2022
4.7.0 33 09/09/2022
4.6.62-alpha 29 09/08/2022
4.6.39-alpha 27 09/11/2022
4.6.38-alpha 11 09/04/2022
4.6.36-alpha 72 09/08/2022
4.6.25-alpha 15 09/07/2022
4.5.30 38 09/03/2022
4.5.29 31 08/21/2022
4.5.28 12 09/04/2022
4.5.23 31 09/09/2022
4.5.22 57 09/08/2022
4.5.21 54 09/03/2022
4.5.20 17 09/02/2022
4.5.19 33 09/07/2022
4.5.18 51 09/08/2022
4.5.16 41 09/08/2022
4.5.13 61 09/08/2022
4.5.10 26 09/03/2022
4.5.9 33 09/08/2022
4.5.9-alpha 63 09/08/2022
4.5.8 65 09/09/2022
4.5.7 54 09/07/2022
4.5.7-alpha 22 08/23/2022
4.5.6-alpha 21 09/08/2022
4.5.3 62 09/08/2022
4.5.0 29 09/09/2022
4.2.1510.2205 52 09/03/2022
4.2.1507.118 94 09/02/2022
4.2.1506.2515 34 09/08/2022
4.2.1506.2016 28 09/08/2022
4.2.1502.911 20 09/09/2022
4.2.1409.1722 58 09/08/2022
4.2.1408.717 59 08/24/2022
4.2.1408.619 29 09/08/2022
4.2.1402.2112 17 09/03/2022
4.2.1312.1622 81 09/09/2022
4.2.1312.1621 70 09/10/2022
4.2.1312.1615 36 09/07/2022
4.2.1312.1416 80 09/05/2022
4.2.1312.1323 30 08/21/2022
4.2.1312.1319 59 09/03/2022
4.1.1311.615 56 08/25/2022
4.1.1309.1617 38 09/08/2022
4.1.1309.919 35 08/23/2022
4.1.1309.801 27 09/08/2022
4.1.1309.800 66 09/02/2022
4.1.1308.2321 73 09/07/2022
4.1.1308.2316 46 09/08/2022
4.1.1308.2120 25 09/03/2022
4.0.10827 40 09/03/2022
3.1.416.3 60 09/07/2022