Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save litichevskiydv/6349bdb9d196c391e05ff2a6409c013c to your computer and use it in GitHub Desktop.
Save litichevskiydv/6349bdb9d196c391e05ff2a6409c013c to your computer and use it in GitHub Desktop.
public class PrintOrderProcessingResultsMapperTests
{
....
[Fact]
public void ShouldVerifyPrintOrderProcessingResultsMapping()
{
.....
// Then
Assert.Equal(200d, actual.PrintingCost);
Assert.Equal(300, actual.PagesCount);
Assert.Equal(new DateTime(2018, 10, 12), actual.FinishDateEstimation);
.....
}
....
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment