Skip to content

Instantly share code, notes, and snippets.

@jskeet
Created September 12, 2023 13:32
Show Gist options
  • Save jskeet/08f7993de8f6131c7048a611f8b62de8 to your computer and use it in GitHub Desktop.
Save jskeet/08f7993de8f6131c7048a611f8b62de8 to your computer and use it in GitHub Desktop.
public void CultureDayNameTest()
{
var polishCulture = CultureInfo.CreateSpecificCulture("pl-PL");
DateTime date = new DateTime(2023, 9, 16);
// Format the day of the week in the Polish culture. Without specifying
// the culture, the current culture is used.
string stringDay = date.ToString("dddd", polishCulture);
stringDay.ShouldContain(DayOfWeek.Saturday.ToString()); //Not passed
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment