Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created April 10, 2025 18:49
Show Gist options
  • Save dcomartin/f69edf3719e351ed8790ff71ff202356 to your computer and use it in GitHub Desktop.
Save dcomartin/f69edf3719e351ed8790ff71ff202356 to your computer and use it in GitHub Desktop.
public class Distance
{
public static decimal MilesToKilometers(decimal miles)
{
return miles * 1.60934m;
}
}
public class TestDeterministic
{
[Fact]
public void Deterministic()
{
var result = Distance.MilesToKilometers(15);
result.ShouldBe(24.14010m);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment