JoeStead / EntityTestFramework

A testing framework that wraps around Entity Framework 7 for easily Faking DbContext DbSets
0 stars 0 forks source link

Add assertions to ConfigurableContext #2

Closed JoeStead closed 8 years ago

JoeStead commented 8 years ago

Should be able to assert on any items saved to the fake database:

myConfigurableContext.HasBeenSaved<User>(u => u.Name == "NewUser" && u.OtherProperty == 1);
JoeStead commented 8 years ago

This has been fixed, some weirdness going on still. Need to investiage #4 some more