namespace adas_core.Test.Repositories; [TestFixture] public class DisplayRepisitoryTest { //private Mock> _mockLogger ; //private Mock> _mockOptionsApiSettings ; /// /// One-time setup method that resets the "displays" collection in the integration database by dropping and recreating it, ensuring a clean state before integration tests run. /// [OneTimeSetUp] public async Task OneTimeSetUp() { //_mockLogger = new Mock>(); //_mockOptionsApiSettings = new Mock>(); await IntegrationDb.Database.DropCollectionAsync("displays"); await IntegrationDb.Database.CreateCollectionAsync("displays"); } }