public void ShouldFetchEmailServerAddressFromWebConfig()
 {
     var configService = new ConfigurationService();
     configService.GetEmailServerAddress().Should().Be("test-email-server-value");
 }
 public void ShouldFetchEmailSslSettingFromWebConfig()
 {
     var configService = new ConfigurationService();
     configService.IsSslEnabledForEmail().Should().BeTrue();
 }
 public void ShouldFetchEmailSenderPasswordFromWebConfig()
 {
     var configService = new ConfigurationService();
     configService.GetEmailSenderPassword().Should().Be("test-password-value");
 }