Last active
December 20, 2017 13:48
-
-
Save selcukusta/988fcfe416f15f8e34f00bb1c49aa824 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| [Theory, MemberData(nameof(StaticParameter))] | |
| public void ToPrettyDate_ShouldAssertTrue_WhenCultureIsItalian(CultureTestParameter parameter) | |
| { | |
| var actual = parameter.Actual.ToPrettyDate(parameter.Culture); | |
| var expected = parameter.Expected; | |
| Assert.Equal(expected, actual); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment