public void ReturnsNothing_WhenCountryIsNothing() { CountryToUriFlagConverter converter = new CountryToUriFlagConverter(); string output = (string)converter.Convert(string.Empty, typeof(string), null, CultureInfo.InvariantCulture); Assert.AreEqual(string.Empty, output); }
public void ProvidesRelativeUriForBMPImage_BasedOnCountryValue(string country, string expectedOutput) { CountryToUriFlagConverter converter = new CountryToUriFlagConverter(); string output = (string)converter.Convert(country, typeof(string), null, CultureInfo.InvariantCulture); Assert.AreEqual(output, expectedOutput); }