namespace adas_core.Test.Repositories;
///
/// Provides a test fixture for the display repository, containing test methods to verify its behavior.
/// Marked with to be recognized as an NUnit test fixture.
///
///
[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");
}
}