Example #1
0
 public static void TwoLetterCodeExists5()
 => Assert.True(CountryISOCodes.TwoLetterCodeExists("FR"));
Example #2
0
 public static void TwoLetterCodeExists4()
 => Assert.False(CountryISOCodes.TwoLetterCodeExists("ZZ"));
Example #3
0
 public static void TwoLetterCodeExists2()
 => Assert.False(CountryISOCodes.TwoLetterCodeExists(String.Empty));
Example #4
0
 public static void TwoLetterCodeExists3(string value)
 => Assert.False(CountryISOCodes.TwoLetterCodeExists(value));
Example #5
0
 public static void TwoLetterCodeExists1()
 => Assert.False(CountryISOCodes.TwoLetterCodeExists(null));