JustMock 2024.4.1113.345
Prefix Reserveddotnet add package JustMock --version 2024.4.1113.345
NuGet\Install-Package JustMock -Version 2024.4.1113.345
<PackageReference Include="JustMock" Version="2024.4.1113.345" />
paket add JustMock --version 2024.4.1113.345
#r "nuget: JustMock, 2024.4.1113.345"
// Install JustMock as a Cake Addin #addin nuget:?package=JustMock&version=2024.4.1113.345 // Install JustMock as a Cake Tool #tool nuget:?package=JustMock&version=2024.4.1113.345
JustMock Lite
JustMock Lite is the most powerful free mocking framework available for .NET developers who practice unit testing and want to deliver exceptional software. It cuts your development time and helps you create better unit tests. It also enables you to perform fast and controlled tests that are independent of external dependencies like databases, web services or proprietary code. For more information, refer to the git repository or our JustMock Lite website.
JustMock Lite Key Features
- AAA pattern – JustMockLite uses the Arrange Act Assert (AAA) pattern.
- Error-Free Mocking - Thanks to its strongly typed framework API, JustMock detects errors in your mock definitions and highlights them in Visual Studio. The JustMock Lite API fully leverages Visual Studio IntelliSense to make it easy to start mocking.
- Mock interfaces - Allows you to test public interfaces.
- Mock classes - Allows you to test public classes.
- Mock properties - Allows you to test the property getter and setter.
- Mock and rise events - Allows you to test events.
- Control mock behavior - Allows you to control the default behavior of a mock whether be to do nothing, call the original code or throw an exception.
- Assert call occurrences - Allows you to determine how many times a call has occurred.
- Recursive mocking - Еnable you to mock members that are obtained as a result of "chained" calls on a mock.
- Sequential mocking - Allows you to return different values on the same or different consecutive calls to one and the same type.
- Support for out/ref - Mock methods accepting our and ref parameters.
- Support for Generics - Mock generic classes and methods.
- Fluent mocking - Allows you setup your test arrangements and expectations from your mock object.
- Being able to seamlessly upgrade to JustMock - No rework of test is required. Simply install JustMock and make sure your project is referencing the correct assemblies.
- And many more.
JustMock
JustMock Lite is backed by a commercial version JustMock which is more advanced mocking framework based on JustMock Lite. JustMock is for developers who doesn't want to have any restrictions and be able to mock literally everything. For more information visit our JustMock website.
JustMock Key Features
- All key features from JustMock Lite
- Mock non-public members and types - Allows you to mock non-public members or types.
- Mock non-virtual methods - Allows you to mock non-virtual methods.
- Mock extension method - Allows you to mock extension methods.
- Mock static classes, methods, and properties - Allows you to mock static constructors, methods and properties getters and setters, set expectations and verify results.
- Mock sealed classes - Allows you to mock sealed classes and calls to their methods/properties
- Mock partial mocking - Allows you keep your original object and mock only the required methods.
- Mock LINQ queries - Allows you to mock LINQ queries with custom select.
- Mock DLL imports - Allows you to mock imported functions (decorated with the [DLLImport()] attribute)
- Mock Ref return values and ref locals - Allows you to arrange and verify Ref return and Ref locals
- Mock Local functions - Allows you mock Local functions.
- Mock MsCorLib members - Allows you to mock types and methods from .NET Framework/.NET Core, i.e. from MsCorLib.
- Mock Microsoft SharePoint - Allows you to mock types and method from SharePoint.
- Mock Microsoft EntityFramework - Allows you to easily create in-memory mocks of the DbSet and DbContext types.
- And many more
Examples
[TestMethod]
public void TestBookService()
{
// Arrange - initialize objects and prepare data.
var repository = Mock.Create<IBookRepository>();
var expectedBook = new Book { Title = "Adventures" };
var service = new BookService(repository);
// prepare an expectation of what the GetWhere method should do when called with the specified parameters
// and how many times the call is supposed to occur.
Mock.Arrange(() => repository.GetWhere(book => book.Id == 1)).Returns(expectedBook).OccursOnce();
// Act - execute the tested logic.
Book actualBook = service.GetSingleBook(1);
// Assert - verify that the actual result is equal to the expected.
Assert.AreEqual(expectedBook.Title, actualBook.Title);
}
Supported .NET Frameworks
- .NET Framework 4.7.2 and later.
- .NET LTS/STS versions via .NET Standard 2.1
Documentation
JustMock Lite and JustMock are coming with extensive Documentation and examples that will help you quickly get started with the framework.
Feedback
JustMock Lite is constantly improved through customer interaction and feedback. If you want to suggest a new feature, bug report or vote for a popular one, please visit our Feedback Portal.
Happy mocking!
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
.NET Framework | net472 is compatible. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- System.Security.Permissions (>= 8.0.0)
NuGet packages (6)
Showing the top 5 NuGet packages that depend on JustMock:
Package | Downloads |
---|---|
JustMock.EntityFramework
Mock DbSet and DbContext mocking amenities for JustMock Lite. |
|
JustMock.Autofac
Mocking container extension for unit-testing Autofac-based projects. |
|
JustMock.Unity
Mocking container extension for unit-testing Unity-based projects. |
|
JustMock.Mef
Export provider and mocking container for unit-testing MEF-based projects. |
|
ShopAtHome.UnitTestHelper
A collection of stub interface builders and test data creators, helpful in creating robust and easily maintained suites of unit tests |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2024.4.1113.345 | 1,057 | 11/13/2024 |
2024.3.805.336 | 19,782 | 8/7/2024 |
2024.2.514.325 | 23,827 | 5/15/2024 |
2024.1.124.247 | 59,406 | 1/31/2024 |
2023.3.1122.188 | 33,006 | 11/23/2023 |
2023.3.1011.155 | 20,717 | 10/11/2023 |
2023.2.719.137 | 53,366 | 7/19/2023 |
2023.2.629.130 | 8,061 | 7/4/2023 |
2023.2.601.35 | 28,577 | 6/2/2023 |
2023.1.117.1 | 172,382 | 1/18/2023 |
2022.3.1109.1 | 48,649 | 11/14/2022 |
2022.3.912.3 | 61,023 | 9/14/2022 |
2022.2.621.1 | 32,094 | 6/22/2022 |
2022.2.511.1 | 25,773 | 5/11/2022 |
2022.1.223.1 | 36,721 | 2/23/2022 |
2022.1.119.1 | 64,851 | 1/19/2022 |
2021.3.1110.2 | 94,296 | 11/10/2021 |
2021.3.915.1 | 43,075 | 9/16/2021 |
2021.2.615.4 | 57,028 | 6/16/2021 |
2021.2.511.1 | 16,490 | 5/12/2021 |
2021.1.222.1 | 82,643 | 2/24/2021 |
2021.1.115.1 | 17,986 | 1/20/2021 |
2020.3.1124.2 | 32,464 | 11/24/2020 |
2020.3.1019.2 | 32,865 | 10/21/2020 |
2020.3.916.1 | 24,163 | 9/16/2020 |
2020.2.616.1 | 67,810 | 6/17/2020 |
2020.2.513.1 | 24,748 | 5/13/2020 |
2020.1.113.1 | 67,405 | 1/15/2020 |
2019.3.910.4 | 114,373 | 9/18/2019 |
2019.2.620.1 | 108,940 | 6/20/2019 |
2019.2.508.1 | 33,290 | 5/15/2019 |
2019.1.207.1 | 58,097 | 2/7/2019 |
2019.1.115.2 | 18,134 | 1/16/2019 |
2018.3.912.1 | 155,470 | 9/12/2018 |
2018.1.117.2 | 192,881 | 1/18/2018 |
2017.2.821.1 | 106,910 | 8/24/2017 |
2016.2.426.1 | 192,253 | 5/4/2016 |
2016.1.307.3 | 53,677 | 3/7/2016 |
2016.1.107.7 | 34,084 | 1/13/2016 |
2015.3.929.5 | 26,465 | 9/30/2015 |
2015.2.715.1 | 74,747 | 7/21/2015 |
2015.2.616.2 | 22,857 | 6/24/2015 |
2015.1.224.3 | 49,320 | 2/25/2015 |
2015.1.205.2 | 2,684 | 2/16/2015 |
2014.3.1204.3 | 16,715 | 12/4/2014 |
2014.3.1021.2 | 3,833 | 10/27/2014 |
2014.2.811.1 | 13,478 | 8/11/2014 |
2014.2.722.1 | 3,038 | 7/22/2014 |
2014.2.609.3 | 4,189 | 6/13/2014 |
2014.1.1623.1 | 7,814 | 4/24/2014 |
2014.1.1609.1 | 4,234 | 4/15/2014 |
2014.1.1519.1 | 4,633 | 3/31/2014 |
2014.1.1424.1 | 11,183 | 2/26/2014 |
2014.1.1418.1 | 2,873 | 2/19/2014 |
2014.1.1317.4 | 2,883 | 1/28/2014 |
2014.1.1307.2 | 2,718 | 1/9/2014 |
2014.1.1217.4 | 3,161 | 12/18/2013 |
2014.1.1204.1 | 2,741 | 12/4/2013 |
2013.3.1119.2 | 3,626 | 11/20/2013 |
2013.3.1101.2 | 4,022 | 11/1/2013 |
2013.3.1015 | 4,135 | 10/16/2013 |
2013.3.1009 | 3,019 | 10/10/2013 |
2013.3.925 | 2,539 | 9/26/2013 |
2013.3.904 | 3,144 | 9/6/2013 |
2013.3.819 | 9,956 | 8/19/2013 |
2013.3.813 | 2,144 | 8/13/2013 |
2013.2.611 | 10,802 | 6/12/2013 |
2013.2.603 | 2,276 | 6/3/2013 |
2013.2.527 | 2,213 | 5/27/2013 |
2013.2.522 | 2,211 | 5/22/2013 |
2013.1.507 | 2,136 | 5/8/2013 |
2013.1.315 | 5,037 | 3/18/2013 |
2013.1.220 | 3,540 | 2/20/2013 |
2013.1.125.1 | 2,561 | 1/25/2013 |
2012.3.1220 | 2,457 | 12/21/2012 |
2012.3.1016 | 3,099 | 10/17/2012 |
2012.2.813 | 4,797 | 8/13/2012 |
2012.1.608 | 3,380 | 6/11/2012 |
2012.1.508 | 2,289 | 5/8/2012 |
2012.1.321 | 2,461 | 3/21/2012 |
2012.1.229 | 2,381 | 3/1/2012 |
2012.1.215 | 2,197 | 2/15/2012 |
2011.3.1323 | 2,309 | 1/23/2012 |
2011.3.1222 | 2,312 | 12/22/2011 |
2011.3.1116 | 2,518 | 11/16/2011 |
2011.2.921 | 2,492 | 9/29/2011 |
2011.2.713 | 3,014 | 7/22/2011 |
2011.1.620 | 2,496 | 6/20/2011 |
2011.1.331 | 2,790 | 4/7/2011 |
2011.1.315 | 3,070 | 3/16/2011 |
2010.3.1215 | 4,781 | 1/7/2011 |
To check the latest release notes visit https://www.telerik.com/support/whats-new/justmock/release-history