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