public ShortenUrlGeneratorSteps GivenIHaveAGeneratorWithoutRandomizer()
 {
     this.generator = new ShortenUrlGenerator(() => string.Empty);
     return(this);
 }
 public ShortenUrlGeneratorSteps GivenIHaveAGenerator()
 {
     this.generator = new ShortenUrlGenerator();
     return(this);
 }