Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created April 10, 2025 18:42
Show Gist options
  • Save dcomartin/56b5234182d819da63b841e1cc7ca29d to your computer and use it in GitHub Desktop.
Save dcomartin/56b5234182d819da63b841e1cc7ca29d to your computer and use it in GitHub Desktop.
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