I use Azure DevOps for CI process of my .NET Core app. Also I use integration tests based on localDb SQL database. When I run my ci piplene I was surprised that all tests were passed.
{
"UseInMemoryDatabase": false, // Application.IntegrationTests are not designed to work with InMemory database.
"DeveloperPathSqlConnectionString": "Server=(localdb)\\mssqllocaldb;Database=DeveloperPathTestDb;Trusted_Connection=True;MultipleActiveResultSets=true;",
"Key": {
"Type": "Development"
},
"Logging": {
"LogLevel": {
"Default": "Debug",
"System": "Information",
"Microsoft": "Information"
}
}
}
Does Azure DevOps already contain the localdb?