-
-
Save dcomartin/56b5234182d819da63b841e1cc7ca29d 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 PlaceOrderTests | |
{ | |
[Fact] | |
public void Test() | |
{ | |
var obj = new PlaceOrder(); | |
var result = obj.Process(); | |
result.Processed.ShouldBe(DateTime.UtcNow, TimeSpan.FromSeconds(1)); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment