MockQueryable.Core
1.1.0
See the version list below for details.
dotnet add package MockQueryable.Core --version 1.1.0
NuGet\Install-Package MockQueryable.Core -Version 1.1.0
<PackageReference Include="MockQueryable.Core" Version="1.1.0" />
paket add MockQueryable.Core --version 1.1.0
#r "nuget: MockQueryable.Core, 1.1.0"
// Install MockQueryable.Core as a Cake Addin #addin nuget:?package=MockQueryable.Core&version=1.1.0 // Install MockQueryable.Core as a Cake Tool #tool nuget:?package=MockQueryable.Core&version=1.1.0
MockQueryable
Extensions for mocking Entity Framework Core operations such ToListAsync, FirstOrDefaultAsync etc. by Moq or NSubstitute When writing tests for your application it is often desirable to avoid hitting the database. The extensions allow you to achieve this by creating a context – with behavior defined by your tests – that makes use of in-memory data.
When should I use it?
If you have something similar to the following code:
var query = _userRepository.GetQueryable();
await query.AnyAsync(x =>...)
await query.FirstOrDefaultAsync(x =>...)
query.CountAsync(x => ...)
query.ToListAsync()
//etc.
and you want to cover it by unit tests
How do I get started?
//1 - create a List<T> with test items
var users = new List<UserEntity>()
{
new UserEntity{LastName = "ExistLastName", DateOfBirth = DateTime.Parse("01/20/2012")},
...
};
//2 - build mock by extension
var mock = users.AsQueryable().BuildMock();
//3 - setup the mock as Queryable for Moq
_userRepository.Setup(x => x.GetQueryable()).Returns(mock.Object);
//3 - setup the mock as Queryable for NSubstitute
_userRepository.GetQueryable().Returns(mock);
Do you prefer DbSet?
//2 - build mock by extension
var mock = users.AsQueryable().BuildMockDbSet();
//3 - setup DbSet for Moq
var userRepository = new TestDbSetRepository(mock.Object);
//3 - setup DbSet for NSubstitute
var userRepository = new TestDbSetRepository(mock);
Do you use DbQuery?
//2 - build mock by extension
var mock = users.AsQueryable().BuildMockDbQuery();
//3 - setup the mock as Queryable for Moq
_userRepository.Setup(x => x.GetQueryable()).Returns(mock.Object);
//3 - setup the mock as Queryable for NSubstitute
_userRepository.GetQueryable().Returns(mock);
Check out the sample project
Where can I get it?
First, install NuGet.
If you are using Moq - then, install MockQueryable.Moq from the package manager console:
PM> Install-Package MockQueryable.Moq
If you are using NSubstitute - then, install MockQueryable.NSubstitute from the package manager console:
PM> Install-Package MockQueryable.NSubstitute
Can I use it with my favorite mock framework?
You can install MockQueryable.Core from the package manager console:
PM> Install-Package MockQueryable.Core
Then make own extension for your favorite mock framework
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 | 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 was computed. |
.NET Framework | net461 was computed. net462 was computed. 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. |
-
.NETStandard 2.0
- Microsoft.EntityFrameworkCore (>= 2.2.2)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on MockQueryable.Core:
Package | Downloads |
---|---|
MockQueryable.EntityFrameworkCore
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. |
GitHub repositories (2)
Showing the top 2 popular GitHub repositories that depend on MockQueryable.Core:
Repository | Stars |
---|---|
CodeMazeBlog/CodeMazeGuides
The main repository for all the Code Maze guides
|
|
nuyonu/N-Tier-Architecture
This is a n-layer architecture based on Common web application architectures.
|
Version | Downloads | Last updated |
---|---|---|
7.0.4-beta | 4,095 | 9/24/2024 |
7.0.3 | 377,543 | 9/2/2024 |
7.0.2 | 101,997 | 8/20/2024 |
7.0.1 | 1,758,344 | 3/7/2024 |
7.0.0 | 4,215,240 | 11/21/2022 |
6.0.1 | 4,678,339 | 3/28/2022 |
6.0.0 | 293,811 | 3/24/2022 |
5.0.2 | 286,012 | 3/24/2022 |
5.0.1 | 3,132,583 | 5/25/2021 |
5.0.0 | 1,284,228 | 11/12/2020 |
5.0.0-preview.7 | 29,712 | 7/28/2020 |
3.1.3 | 2,092,307 | 5/19/2020 |
3.1.2 | 173,756 | 4/17/2020 |
3.1.1 | 440,218 | 1/25/2020 |
3.0.2 | 61,235 | 12/20/2019 |
3.0.1 | 78,918 | 10/11/2019 |
3.0.0 | 21,368 | 9/30/2019 |
1.1.0 | 749,420 | 2/28/2019 |
1.0.4 | 73,718 | 1/29/2019 |
1.0.3 | 269,657 | 8/30/2018 |
1.0.2 | 80,798 | 1/17/2018 |
1.0.1 | 2,361 | 12/26/2017 |
1.0.0 | 24,248 | 12/26/2017 |
DbQuery support
Microsoft.EntityFrameworkCore (>=2.2.2) is required