JustMock.EntityFramework
2024.4.1113.345
Prefix Reserved
dotnet add package JustMock.EntityFramework --version 2024.4.1113.345
NuGet\Install-Package JustMock.EntityFramework -Version 2024.4.1113.345
<PackageReference Include="JustMock.EntityFramework" Version="2024.4.1113.345" />
paket add JustMock.EntityFramework --version 2024.4.1113.345
#r "nuget: JustMock.EntityFramework, 2024.4.1113.345"
// Install JustMock.EntityFramework as a Cake Addin #addin nuget:?package=JustMock.EntityFramework&version=2024.4.1113.345 // Install JustMock.EntityFramework as a Cake Tool #tool nuget:?package=JustMock.EntityFramework&version=2024.4.1113.345
Telerik.JustMock.EntityFramework
In-memory mock DbSet and DbContext mocking amenities for JustMock.
Mocking DbContext
Here is an example straight from the tests:
[TestClass]
public class DbContextTests
{
public class Person
{
public int Id { get; set; }
public string Name { get; set; }
}
public class DbContextOne : DbContext
{
public DbSet<Person> People { get; set; }
}
[TestMethod]
public void Prepare_ShouldAssignDbSetProperties()
{
var dbContext = EntityFrameworkMock.Create<DbContextOne>();
Assert.IsNotNull(dbContext.People);
}
}
In the above example I create a mock of my DbContext-deriving class. As a result, all fields that are of type DbSet<T>
or IDbSet<T>
are automatically populated with a mock in-memory DbSet (initially empty).
We can also create a mock from a DbContext-like interface, like in the example below:
public interface IMyDbContext
{
IDbSet<Person> People { get; }
}
[TestMethod]
public void Prepare_Interface_DbSetsInitialized()
{
var dbContext = EntityFrameworkMock.Create<IMyDbContext>();
Assert.IsNotNull(dbContext.People);
}
Populating data
Populating the context with data lets you simulate a database that has data in it. Here's how we can populate our context:
[TestMethod]
public async Task Bind_BindData_DataIsThere()
{
var ctx = Mock.Create<TheDbContext>().PrepareMock();
var list = new List<Person>
{
new Person { Id = 1, Name = "a" }
};
ctx.People.Bind(list);
var data = await ctx.People.ToListAsync();
Assert.AreSame(list[0], data[0]);
}
The Bind()
extension method binds a DbSet
or IDbSet
on the mock context to a backing collection, which can be anything, but it's best to use a ObservableCollection<T>
(Local
works only when the backing collection is itself observable).
Changes made to the DbSet are passed to the backing collection and vice versa.
Further reading
Check out the unit tests in Telerik.JustMock.EntityFramework repo on GitHub.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net472 is compatible. net48 was computed. net481 was computed. |
-
- JustMock (>= 2024.4.1113.345)
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 |
---|---|---|
2024.4.1113.345 | 50 | 11/13/2024 |
2015.3.929.5 | 175,731 | 1/8/2016 |
1.0.1 | 58,587 | 1/19/2015 |
1.0.0 | 1,615 | 12/24/2014 |