public ShortenUrlControllerTests()
 {
     this.shortenUrlService = new Mock <IShortenUrlService>();
     sut = new ShortenUrlController(this.shortenUrlService.Object);
 }