-
-
Save dcomartin/f69edf3719e351ed8790ff71ff202356 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
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