Last active
March 24, 2017 07:11
-
-
Save jpvelasco/31e3a25811907d5cc6633ba18a3ce40d to your computer and use it in GitHub Desktop.
Sample test code using EF Core In-Memory provider.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Fact] | |
public void GetClients_WhenCalledWithInMemoryDataContext_ReturnsExpectedResult() | |
{ | |
var inMemoryDataContextOptions = new DbContextOptionsBuilder<EventDataContext>() | |
.UseInMemoryDatabase(databaseName: "Test_With_In_Memory_Database") | |
.Options; | |
// NOTE: Because we will need to assert against known data, | |
// we need to seed the in-memory test database | |
// with the same context options as the unit test | |
CreateTestClient(inMemoryDataContextOptions); | |
var eventDataContext = new EventDataContext(inMemoryDataContextOptions); | |
var controller = new ClientsController(eventDataContext); | |
// NOTE: As a side note, in a real world test you will ideally have a specific | |
// Assert per test, but for sample purposes multiple asserts are used here. | |
OkObjectResult okResult = Assert.IsType<OkObjectResult>(controller.GetClients()); | |
List<Client> returnSession = Assert.IsType<List<Client>>(okResult.Value); | |
Assert.True(returnSession.FirstOrDefault().FirstName == "first"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment