I am new to use NUnit integration testing with Asp core 2.2, I have already core RESTful Api but have no idea how to configure NUnit to implement integration test. Usually I Implement it using Configuration file from Migration Folder as the following but no more exists in ASP Core 2.2 and I don't know what the new alternative.
var configuration = new Migrations.ApplicationDbContextModelSnapshot();
var migrator = new Migrator(configuration);
migrator.Update();
So please If you don't understand my question I just need an explicit link to use NUnit Integration Testing with .Net Core 2.2.