Exemple #1
0
        public void UnitedKingdomPostCodeGeneratorTest()
        {
            IGenerator <string> unitedKingdomCountyGenerator = new UnitedKingdomPostCodeGenerator();
            var county = (string)unitedKingdomCountyGenerator.Generate();

            Assert.IsNotNull(county);
        }
 public void UnitedKingdomPostCodeGeneratorTest()
 {
     IGenerator<string> unitedKingdomCountyGenerator = new UnitedKingdomPostCodeGenerator();
     var county = (string)unitedKingdomCountyGenerator.Generate();
     Assert.IsNotNull(county);
 }