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