- Teste FaturaIntegrationTests para verificar divergências entre o novo e o velho método "Faturas" - FaturaOld adicionada para fazer parte dos testes - XUnit intalado em Download Faturas.Tests para testes - divergencias.csv gerado para retornar os resultados - 4Docs_2025_07.csv como entrada para testar as requisições
26 lines
724 B
XML
26 lines
724 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-windows10.0.17763.0</TargetFramework>
|
|
<RootNamespace>Download_Faturas.Tests</RootNamespace>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="coverlet.collector" Version="6.0.2" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
|
|
<PackageReference Include="xunit" Version="2.9.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Download Faturas\Download Faturas.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Using Include="Xunit" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|