Exemple #1
0
        public void countrycodeservice_can_get_country_codes_test()
        {
            //given
            ICountryCodeService service = new CountryCodeService(new JsonSerializationService <ISOCountryCodeCollection>());
            //when
            var countryCodes = service.GetCountryCodes();

            //then
            countryCodes.Should().NotBeNull();
        }