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