Ejemplo n.º 1
0
        public void UnitedKingdomCountyGeneratorTest()
        {
            IGenerator <string> unitedKingdomCountyGenerator = new UnitedKingdomCountyGenerator();
            var county = (string)unitedKingdomCountyGenerator.Generate();

            Assert.IsNotNull(county);
        }
Ejemplo n.º 2
0
 public void UnitedKingdomCountyGeneratorTest()
 {
     IGenerator<string> unitedKingdomCountyGenerator = new UnitedKingdomCountyGenerator();
     var county = (string)unitedKingdomCountyGenerator.Generate();
     Assert.IsNotNull(county);
 }