MockQueryable.FakeItEasy
3.1.1
See the version list below for details.
dotnet add package MockQueryable.FakeItEasy --version 3.1.1
NuGet\Install-Package MockQueryable.FakeItEasy -Version 3.1.1
<PackageReference Include="MockQueryable.FakeItEasy" Version="3.1.1" />
paket add MockQueryable.FakeItEasy --version 3.1.1
#r "nuget: MockQueryable.FakeItEasy, 3.1.1"
// Install MockQueryable.FakeItEasy as a Cake Addin #addin nuget:?package=MockQueryable.FakeItEasy&version=3.1.1 // Install MockQueryable.FakeItEasy as a Cake Tool #tool nuget:?package=MockQueryable.FakeItEasy&version=3.1.1
MockQueryable
Extensions for mocking Entity Framework Core (EFCore) operations such ToListAsync, FirstOrDefaultAsync etc. by Moq, NSubstitute or FakeItEasy 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);
//3 - setup the mock as Queryable for FakeItEasy
A.CallTo(() => 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 or FakeItEasy
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);
//3 - setup the mock as Queryable for FakeItEasy
A.CallTo(() => 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
If you are using FakeItEasy - then, install MockQueryable.FakeItEasy from the package manager console:
PM> Install-Package MockQueryable.FakeItEasy
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 | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
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
- FakeItEasy (>= 5.1.1)
- MockQueryable.Core (>= 3.1.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
7.0.4-beta | 160 | 9/24/2024 |
7.0.3 | 31,595 | 9/2/2024 |
7.0.2 | 10,381 | 8/20/2024 |
7.0.1 | 166,828 | 3/7/2024 |
7.0.0 | 329,625 | 11/21/2022 |
6.0.1 | 495,462 | 3/28/2022 |
6.0.0 | 5,880 | 3/24/2022 |
5.0.2 | 15,418 | 3/24/2022 |
5.0.1 | 409,340 | 5/25/2021 |
5.0.0 | 65,313 | 11/12/2020 |
5.0.0-preview.7 | 648 | 7/28/2020 |
3.1.3 | 82,094 | 5/19/2020 |
3.1.2 | 16,762 | 4/17/2020 |
3.1.1 | 9,937 | 1/25/2020 |
3.0.2 | 2,362 | 12/20/2019 |
3.0.1 | 1,932 | 10/11/2019 |
3.0.0 | 5,566 | 9/30/2019 |
1.1.0 | 4,767 | 7/28/2019 |
Supported Entity Framework Core 3.1.1