using Bit.Core.Entities; using Bit.Core.Test.AutoFixture.Attributes; using Bit.Infrastructure.EFIntegration.Test.AutoFixture; using Bit.Infrastructure.EFIntegration.Test.Repositories.EqualityComparers; using Xunit; using EfRepo = Bit.Infrastructure.EntityFramework.Repositories; using SqlRepo = Bit.Infrastructure.Dapper.Repositories; namespace Bit.Infrastructure.EFIntegration.Test.Repositories; public class TaxRateRepositoryTests { [CiSkippedTheory, EfTaxRateAutoData] public async void CreateAsync_Works_DataMatches( TaxRate taxRate, TaxRateCompare equalityComparer, List suts, SqlRepo.TaxRateRepository sqlTaxRateRepo ) { var savedTaxRates = new List(); foreach (var sut in suts) { var i = suts.IndexOf(sut); var postEfTaxRate = await sut.CreateAsync(taxRate); sut.ClearChangeTracking(); var savedTaxRate = await sut.GetByIdAsync(postEfTaxRate.Id); savedTaxRates.Add(savedTaxRate); } var sqlTaxRate = await sqlTaxRateRepo.CreateAsync(taxRate); var savedSqlTaxRate = await sqlTaxRateRepo.GetByIdAsync(sqlTaxRate.Id); savedTaxRates.Add(savedSqlTaxRate); var distinctItems = savedTaxRates.Distinct(equalityComparer); Assert.True(!distinctItems.Skip(1).Any()); } }