Created
October 10, 2022 13:01
-
-
Save renatogroffe/811cfd55e2feb65abc9fbcf7e925c8da to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using FluentAssertions; | |
namespace Groffe.Distancias.Testes; | |
public class TestesConversaoDistancias | |
{ | |
[Theory] | |
[InlineData(1, 1.609)] | |
[InlineData(10.579, 17.022)] | |
[InlineData(500, 804.5)] | |
[InlineData(750.5, 1207.554)] | |
[InlineData(1300, 2091.7)] | |
[InlineData(2000.123, 3218.198)] | |
[Trait("Milhas", "Conversao")] | |
public void ValidarConversaoMilhasParaKm( | |
double milhas, double resultadoKm) | |
{ | |
ConversorDistancias.MilhasParaKm(milhas) | |
.Should().Be(resultadoKm, | |
"* Possivel problema de arredondamento na conversao para o Valor em Km *"); | |
} | |
[Theory] | |
[InlineData(1.609, 1)] | |
[InlineData(100, 62.15)] | |
[InlineData(2091.7, 1300)] | |
[InlineData(200.78, 124.786)] | |
[InlineData(5763.96, 3582.324)] | |
[InlineData(7500, 4661.28)] | |
[Trait("Km", "Conversao")] | |
public void ValidarConversaoKmParaMilhas( | |
double Km, double resultadoMilhas) | |
{ | |
ConversorDistancias.KmParaMilhas(Km) | |
.Should().Be(resultadoMilhas, | |
"* Possível problema de arredondamento na conversão para o Valor em Milhas *"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment